/* ===== COLORS & FONTS ===== */
:root {
  --base-bg: #FFE9F2; /* Soft Cotton Candy Pink */
  --text: #000000; /* Main text: Black for readability */
  --accent: #FFB6C1; /* Light Pink for highlights/buttons */
  --highlight: #C9E0FF; /* Pastel Blue for minor highlights */
  --support: #FDD9EC; /* Secondary pastel touch for pop-up/UI */
  --font-heading: 'Gloock', serif;
  --font-body: 'Roboto', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--base-bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
}

/* ===== POP-UP NOTIFICATION ===== */
.popup {
  width: 100%;
  background-color: var(--support);
  color: var(--text);
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 1000;
  border-bottom: 1px solid var(--highlight);
}

/* ===== NAVIGATION ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
  top: 50px; /* Below pop-up */
  z-index: 900;
  background-color: var(--base-bg);
  border-bottom: 1px solid var(--highlight);
}

.nav-items {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-items li a {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-items li a:hover {
  color: var(--accent);
}

/* Hamburger for mobile */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text);
}

/* Mobile Menu */
/* Mobile Menu Container */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;       /* hidden initially off-screen */
  width: 70%;        /* adjust width as needed */
  height: 100%;
  background: var(--base-bg);
  box-shadow: 4px 0 12px rgba(0,0,0,0.2);
  transition: left 0.4s ease;
  z-index: 999;
  padding-top: 4rem;
}

/* When menu is active */
.mobile-menu.show {
  left: 0;           /* slide in */
}

/* Mobile Menu Links */
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  margin: 1.5rem 0;
  opacity: 0;         /* start invisible, animated in JS */
  transform: translateX(-20px);
  transition: all 0.3s ease;
}

.mobile-menu ul li a {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--text);
}

.mobile-menu ul li.show {
  opacity: 1;
  transform: translateX(0);
}

/* ===== MOBILE MENU PRICING ===== */
.mobile-pricing {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--support);
  border-radius: 12px;
  font-family: var(--font-body);
  color: var(--text);
  text-align: left;
}

.mobile-pricing h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.mobile-pricing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-pricing ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.mobile-pricing .note {
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 0.8rem;
  color: var(--text);
}

/* Responsive tweak for smaller screens */
@media (max-width: 480px) {
  .mobile-pricing h4 {
    font-size: 1rem;
  }
  .mobile-pricing ul li {
    font-size: 0.9rem;
  }
  }
.pricing-image {
  text-align: center; /* centers the image */
  margin-top: 10px;
}

.pricing-image img {
  max-width: 80px; /* make it small */
  height: auto;
  background: transparent; /* ensures no background */
}@media (max-width: 480px) {
  .pricing-image img {
    max-width: 225px; /* even smaller for very small screens */
  }
}
/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  text-align: center;
  padding: 6rem 2rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}
.hero-image {
  position: relative;
  width: 200px;   /* adjust size */
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

/* Animated glowing aura */
.hero-image::before {
  content: "";
  position: absolute;
  inset: -8px; /* aura thickness */
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #c8a2c8,
    #ffb6c1,
    #add8e6,
    #c8a2c8
  );
  filter: blur(25px);
  animation: rotateGlow 8s linear infinite;
  z-index: 1;
}

/* Rotation animation */
@keyframes rotateGlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes imageFadeIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-text {
  margin-top: 1.0rem;}
.intro {
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards 1.2s;
}

.name {
  font-family: var(--font-heading);
  font-size: 3rem;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: scale(0.95);
  animation: nameGradient 1s forwards 1.8s;
}

@keyframes nameGradient {
  to { opacity: 1; transform: scale(1); }
}

.role {
  font-size: 1.5rem;
  margin: 0.5rem 0 1.5rem 0;
  opacity: 0;
  animation: fadeUp 1s forwards 2.2s;
}
.code-tagline {
  font-family: monospace;
  font-size: 1.1rem;
  opacity: 0;
  animation: fadeUp 1s forwards 2.6s;
}

.code-tagline .tag {
  color: var(--accent); /* your highlight color */
}

.code-tagline {
  color: #444; /* dark gray for I Create */
}

.code-tagline .dynamic {
  color: #EE82EE; /* dynamic words match inner text */
  font-weight: 500;
}

/* CTA BUTTONS */
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp 1s forwards 3s;
}

.cta-buttons a {
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-buttons .primary {
  background-color: var(--accent);
  color: var(--base-bg);
}

.cta-buttons .primary:hover {
  background-color: var(--highlight);
  color: #fff;
  transform: scale(1.05);
}

.cta-buttons .secondary {
  background-color: transparent;
  border: 2px solid var(--highlight);
  color: var(--highlight);
}

.cta-buttons .secondary:hover {
  background-color: var(--highlight);
  color: #fff;
  transform: scale(1.05);
}

/* ANIMATIONS */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVENESS ===== */
@media(max-width: 768px) {
  .nav-items { display: none; }
  .hamburger { display: block; }
  .hero-image { width: 200px; height: 200px; }
  .name { font-size: 2.5rem; }
  .role { font-size: 1.3rem; }
}

@media(max-width: 480px) {
  .hero { padding: 5rem 1rem 2rem 1rem; }
  .hero-image { width: 180px; height: 180px; }
  .name { font-size: 2.2rem; }
  .role { font-size: 1.1rem; }
  .cta-buttons { flex-direction: column; gap: 1rem; }
}

/* ===== BELT SECTION ===== */
.belt {
  width: 100%;
  background-color: var(--highlight);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2rem 1rem;
  flex-wrap: wrap; /* allows wrapping on small screens */
  gap: 1.5rem;
  text-align: center;
}

.stat {
  flex: 1 1 200px; /* flexible width, min 200px */
  max-width: 250px;
}

.number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent), var(--support));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transition: transform 0.3s ease;
}

.stat:hover .number {
  transform: scale(1.1);
}

.stat p {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: var(--text);
  font-weight: 500;
}

/* Responsive adjustments */
@media(max-width: 768px) {
  .belt {
    justify-content: center;
    gap: 2rem;
  }
  .number {
    font-size: 2rem;
  }
}

@media(max-width: 480px) {
  .belt {
    flex-direction: row;
    gap: 1.5rem;
  }
  .stat {
    flex: 1 1 45%;
  }
  .number {
    font-size: 1.8rem;
  }
}
/* About Me Section */
/* About Me Section */
.about {
  width: 100%;
  padding: 80px 20px;
  background: var(--base-bg);
  color: var(--text);
  text-align: center;
  overflow: hidden;
  font-family: var(--font-body);
}

.about .container {
  max-width: 900px;
  margin: 0 auto;
}

.about .section-title,
.about .about-description {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.about .section-title.visible,
.about .about-description.visible {
  opacity: 1;
  transform: translateY(0);
}

.about .section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about .about-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 auto;
  max-width: 750px;
  padding: 0 10px;
  transition-delay: 0.3s; /* description slides in after title */
  background: var(--highlight);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Responsiveness */
@media (max-width: 768px) {
  .about { padding: 60px 15px; }
  .about .section-title { font-size: 2rem; }
  .about .about-description { font-size: 1rem; line-height: 1.6; }
}

@media (max-width: 480px) {
  .about .section-title { font-size: 1.0rem; }
  .about .about-description { font-size: 0.95rem; }
}

/* ===== SKILLS SECTION ===== */
.skills {
  background: var(--base-bg);
  padding: 4rem 2rem;
  text-align: center;
}

.skills .section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.skills-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.skill-icon {
  background: var(--support);
  padding: 2rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-icon i {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.skill-icon span {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}

/* Hover Effect */
.skill-icon:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Animation when scrolling in */
.skill-icon {
  opacity: 0;
  transform: translateY(30px);
}
.skill-icon.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}
@media (max-width: 768px) {
  .skills .section-title {
    font-size: 1.6rem;
  }
  .skills-icons {
    gap: 1.5rem;
  }
  .skill-icon {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .skills-icons {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  .skill-icon i {
    font-size: 1.8rem;
  }
  .skill-icon span {
    font-size: 0.9rem;
  }
  .skills .section-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;}
}
/* ===== PROJECTS SECTION ===== */
.projects {
  background: var(--base-bg);
  padding: 4rem 2rem;
  text-align: center;
}

.projects .section-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.project-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.project-visual {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Terminal (DevBuddy) */
.project-card.terminal .project-visual {
  background: #111;
  color: #39ff14;
  font-family: "Courier New", monospace;
  text-align: left;
  padding: 1rem;
  overflow-x: auto;
  font-size: 0.85rem;
}

/* Safari Website */
.project-card.safari .project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Branding Card */
.project-card.branding .project-visual {
  background: linear-gradient(135deg, #FFD6E8, #D8B4FE);
  font-size: 2.5rem;
  color: white;
}

/* Titles & text */
.project-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin: 0.5rem 0;
  color: var(--text);
}

@media (max-width: 400px) {
  .project-card h3 {
    font-size: 0.8rem; /* even smaller for very small screens */
  }
}

.project-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 1rem;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.badge.in-progress {
  background: var(--highlight);
  color: var(--text);
}

/* Tech stack */
.tech-stack {
  font-size: 0.85rem;
  color: #444;
  margin-top: auto; /* pushes to bottom */
}

.tech-stack i {
  margin-right: 0.3rem;
  color: var(--accent);
}

/* --- CONTACT GRID LAYOUT --- */
.contact-grid {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  padding: 2rem 0;
  flex-wrap: wrap;
}

/* --- CONTACT SECTION TITLE & INTRO: Centered and styled --- */
.contact .section-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.contact .section-intro {
  display: block;
  text-align: center;
  color: var(--accent);
  font-size: 1.0rem;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 2.3rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 450px;
  line-height: 1.6;
}

/* --- CONTACT FORM: aligned fields --- */
.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  min-width: 280px;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-form .form-group {
  width: 100%;
}

.contact-form label {
  display: block;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 30px;
  border: 2px solid var(--accent);
  background: var(--support);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1.3rem;
  margin-bottom: 0;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form textarea {
  resize: vertical;
  border-radius: 30px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--highlight);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-form .btn-submit {
  width: 100%;
  padding: 0.9rem 1.3rem;
  border-radius: 30px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  margin-top: 0.7rem;
}

.contact-form .btn-submit:hover {
  background: var(--highlight);
  color: var(--text);
  transform: scale(1.04);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

* --- CONTACT ICONS: horizontal row, spacing, scaling, hover --- */
.contact-icons-container {
  flex: 1 1 250px;           /* icons column */
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-icons-title {
  display: block;
  text-align: center;
  color: var(--accent);
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.8px;
  opacity: 1;
  margin-bottom: 1.1rem;
  margin-top: 0.5rem;
  padding-bottom: 0;
}
/* Icons row */
.contact-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;            /* forces one line */
  width: 100%;
  overflow-x: auto;             /* optional if viewport is small */
}

.contact-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;           /* round shape */
  background: var(--support);
  color: var(--accent);
  font-size: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s, color 0.3s;
}
/* Hover effect */
.contact-icons a:hover {
  transform: scale(1.13);
  box-shadow: 0 8px 22px rgba(0,0,0,0.16);
  background: var(--highlight);
  color: var(--text);
}

/* --- RESPONSIVE: keep alignment, scale icons, form --- */
@media (max-width: 900px) {
  .contact-grid {
    flex-direction: column;
    gap: 2.2rem;
    align-items: center;
  }
  .contact-form,
  .contact-icons-container {
    max-width: 340px;
  }
}

@media (max-width: 600px) {
  .contact-grid {
    gap: 1.2rem;
    padding: 1.2rem 0;
  }
  .contact-form {
    max-width: 98vw;
    min-width: 220px;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form .btn-submit {
    font-size: 0.95rem;
    padding: 0.7rem 1rem;
    border-radius: 22px;
  }
  .contact-icons-title {
    font-size: 1rem;
    margin-bottom: 0.9rem;
  }
  .contact-icons a {
    width: 64px;
    height: 64px;
    font-size: 2.35rem;
  }
  .contact-icons {
    gap: 1.35rem;
  }

}

@media (max-width: 400px) {
  /* Keep icons in row, but scale up a bit for visibility */
    .contact-icons a {
    width: 56px;
    height: 56px;
    font-size: 2.0rem;
  }
  .contact-icons {
    gap: 1rem;
  }
  .contact-icons-title {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
  }
}

/* --- FADE/SLIDE-IN ANIMATION WHEN SCROLLING INTO VIEW --- */
.contact-grid {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.6,.1,.3,1), transform 0.7s cubic-bezier(.6,.1,.3,1);
}

.contact-grid.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ===== FOOTER ===== */
.footer {
  background: var(--support);       /* soft pastel background */
  padding: 1.5rem 2rem;
  text-align: center;
  font-family: var(--font-body);
  color: var(--text);
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}

.footer-link {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
  color: var(--highlight);
  transform: scale(1.05);
}

.footer-location,
.footer-copy {
  color: var(--text);
}

/* ===== RESPONSIVENESS ===== */
@media (max-width: 480px) {
  .footer-container {
    flex-direction: column;
    gap: 0.6rem;
  }
}
