/* ==== GLOBAL ==== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body { overflow-x: hidden; }

body {
  font-family: 'Inter', Arial, sans-serif;
  background: #F5C76E;
  color: #111;
  line-height: 1.6;
}

/* ==== HERO ==== */
.hero-statement {
  min-height: 100vh;
  background: #F5C76E;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 2rem;
}
/* Hero scroll pills container */
.hero-scrollbar {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto;
  padding: 0.35rem 0;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.hero-scrollbar-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
  animation-play-state: running; /* default */
}

.hero-scrollbar:hover .hero-scrollbar-track {
  animation-play-state: paused;
}


.hero-scrollbar-text {
  font-family: Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: #F5C76E;
  white-space: nowrap;
  padding: 0 1rem;
}

/* Smooth infinite scroll motion */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* — fancy bg shapes — */
.hero-bg-shape {
  position: absolute;
  inset: -10% -5% 0 -5%;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-shape::before,
.hero-bg-shape::after {
  content: "";
  position: absolute;
  filter: blur(28px);
}

/* main blob */
.hero-bg-shape::before {
  width: 140%;
  height: 80%;
  left: -20%;
  top: -10%;
  background: linear-gradient(120deg, rgba(232,185,35,0.18) 0%, rgba(245,199,110,0.14) 35%, rgba(17,17,17,0.02) 100%);
  border-radius: 40% 60% 50% 50% / 40% 30% 70% 60%;
}

/* highlight */
.hero-bg-shape::after {
  width: 60%;
  height: 40%;
  right: -5%;
  bottom: 5%;
  background: linear-gradient(90deg, rgba(255,255,255,0.12), rgba(245,199,110,0.06));
  border-radius: 20% 50% 30% 50% / 30% 40% 30% 60%;
  mix-blend-mode: screen;
}

/* headline */
.hero-headline {
  font-family: Arial, sans-serif;
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  z-index: 2;
}

/* nav */
.hero-nav {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  z-index: 2;
}

.hero-nav a {
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  transition: .2s;
}

.hero-nav a:hover {
  background: #111;
  color: #fff;
}

/* === ABOUT SECTION === */

.about {
  padding: 8rem 2rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem; /* ✅ closer image */
}

/* Left text side */
.about-text {
  flex: 0 0 65%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Title */
.about-text h2 {
  font-family: Arial, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  position: relative;
  margin-bottom: 2rem;
}

/*  Clean underline — fixed position */
.about-text h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #111;
  border-radius: 5px;
  display: block;
  margin: 0.75rem auto 0 auto;
  position: static; /* ✅ no more weird offset */
}

/* Paragraph */
.about-text p {
  max-width: 60ch;
  margin-top: 1rem;
  font-size: 1.25rem;
  line-height: 1.85;
  color: #222;
}

/* Right image side */
.about-image {
  flex: 0 0 35%;
  display: flex;
  justify-content: flex-end;
  padding-right: 5rem; /* ✅ just enough spacing */
}

.about-image img {
  max-width: 350px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
  transition: transform .3s;
}

/* Hover glow */
.about-image img:hover {
  transform: translateY(-4px);
}

/* Mobile responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .about-image {
    padding-right: 0;
    justify-content: center;
  }

  .about-image img {
    max-width: 280px;
  }
}

/* ==== PROJECTS ==== */

.projects {
  text-align: center;
  padding-top: 6rem;
}

.projects h2 {
  font-size: 2.8rem;
  margin-bottom: 3.2rem;
  font-weight: 800;
  position: relative;
}

/* Underline for projects title */
.projects h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #111;
  border-radius: 5px;
  display: block;
  margin: 0.75rem auto 0 auto;
}

/* optional mini label style */
.projects::before {
  content: "Selected Work";
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: .8rem;
  display: block;
}


/* Grid Layout */
.project-grid {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.3rem;
  margin: 0 auto;
}

/* Card */
.project-card {
  background: #F9E4B7;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Hover drip */
.project-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

.project-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f0f17;
  overflow: hidden;
}

.project-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
  transition: .35s cubic-bezier(.2, .6, .3, 1);
}

/* subtle zoom effect */
.project-card:hover img {
  transform: scale(1.06);
}

.project-content {
  padding: 1.4rem 1.6rem 1.8rem;
}

.project-title {
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #111;
  margin-bottom: .35rem;
}

.project-subtitle {
  font-size: 0.95rem;
  color: #555;
  opacity: .85;
}

/* ==== CONTACT ==== */
.contact {
  padding: 8rem 2rem;
  text-align: center;
}

.contact h2 {
  font-family: Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 4rem;
  color: #111;
  position: relative;
}

/* Underline for contact title */
.contact h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #111;
  border-radius: 5px;
  display: block;
  margin: 0.75rem auto 0 auto;
}

.contact-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* intro text */


.contact-intro-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #222;
  margin: 0;
  font-weight: 500;
}

/* icons section */
.contact-icons {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.icon-link {
  width: 70px;
  height: 70px;
  background: #111;
  color: #F5C76E;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  text-decoration: none;
}

.icon-link:hover {
  background: #F5C76E;
  color: #111;
  transform: translateY(-6px) scale(1.12);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* contact methods grid */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.contact-method {
  background: #F9E4B7;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.method-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-method h3 {
  font-family: Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.8rem;
}

.method-link {
  font-size: 1.05rem;
  color: #F5C76E;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.method-link:hover {
  color: #111;
  background: #F5C76E;
}

/* responsive */
@media (max-width: 768px) {
  .contact {
    padding: 6rem 1.5rem;
  }

  .contact h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }

  .contact-grid {
    gap: 3rem;
  }

  .contact-intro-box {
    padding: 2rem;
  }

  .contact-intro-text {
    font-size: 1.1rem;
  }

  .contact-icons {
    gap: 2rem;
  }

  .icon-link {
    width: 65px;
    height: 65px;
  }

  .contact-methods {
    gap: 1.5rem;
  }

  .contact-method {
    padding: 1.5rem;
  }
}

/* ==== SCROLL TO TOP BUTTON ==== */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #F5C76E;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  z-index: 999;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background: #F5C76E;
  color: #111;
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.scroll-top-btn:active {
  transform: translateX(-50%) translateY(-2px);
}

.scroll-top-text {
  display: inline;
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 1.5rem;
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
  }

  .scroll-top-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* ==== FOOTER ==== */
.footer {
  border-top: 2px solid #111;
  background: #F5C76E;
  padding: 3rem 2rem 8rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-note {
  font-size: 0.95rem;
  color: #111;
  font-weight: 500;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-icon {
  width: 45px;
  height: 45px;
  background: #111;
  color: #F5C76E;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.footer-icon:hover {
  background: #fff;
  color: #111;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.footer-divider {
  margin: 0 0.5rem;
  opacity: 0.5;
}

.footer-link {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.footer-link:hover {
  text-decoration: underline;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 1.5rem 7rem 1.5rem;
  }

  .footer-content {
    gap: 1.25rem;
  }

  .footer-note {
    font-size: 0.9rem;
  }

  .footer-socials {
    gap: 1.25rem;
  }

  .footer-icon {
    width: 40px;
    height: 40px;
  }
}

/* ==== RESPONSIVE ==== */
@media(max-width:900px) {
  .hero-headline { font-size: 3rem; }
  .about-container { flex-direction: column; gap: 3rem; }
  .project-grid { gap: 2rem; }
}
