:root{
  /* Figma gradient stops */
  --bg1: #BFAB9B; /* light */
  --bg2: #5C5652; /* mid */
  --bg3: #1F1D1C; /* dark */

  --white: #FFFFFF;
  --grey: #959595;

  --overlay: rgba(25, 22, 22, 0.55);

  --container: 1300px;
  --radius: 8px;

  /* wave */
  --wave-h: 220px;
  --wave-fill: rgba(25,22,22,0.55);

  /* hero stack specs */
  --hero-x: 130px;
  --hero-y: 200px;
  --hero-w: 451px;
  --hero-gap: 61px;
  --btn-gap: 24px;

  /* button specs */
  --btn-pad-x: 40px;
  --btn-pad-y: 12px;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }

body{
  margin:0;
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--white);
  background: linear-gradient(90deg, var(--bg3) 0%, var(--bg2) 56%, var(--bg1) 100%);
}

.container{
  width: min(var(--container), calc(100% - 140px));
  margin: 0 auto;
}

html{
  scroll-behavior: smooth;
}

/* links + focus */
a{ color:inherit; text-decoration:none; }
a:focus-visible,
button:focus-visible{
  outline: 2px solid rgba(255,255,255,.6);
  outline-offset: 4px;
  border-radius: 10px;
}

/* button reset */
button.btn{
  border: none;
  background: none;
  font: inherit;
  padding: 0;
  cursor: pointer;
}

/* HEADER */
.site-header{
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 12px 0 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.nav{
  display:flex;
  gap: 20px;
  align-items:center;
}

.nav__link{
  position: relative;
  font-weight: 500;
  font-size: 20px;
  color: var(--white);
  opacity: .85;
  transition: opacity .2s ease;
  white-space: nowrap;
}

.nav__link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background: rgba(255,255,255,.60);
  transition: width .25s ease;
}

.nav__link:hover{ opacity: 1; }
.nav__link:hover::after{ width:100%; }

.nav__link.is-active{
  opacity: 1;
  font-weight: 700;
}
.nav__link.is-active::after{
  width:100%;
  background: rgba(255,255,255,.75);
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: var(--radius);
  user-select:none;
  white-space:nowrap;
  cursor: pointer;
}

/* ✅ More grey glass + more contrast (Figma-like) */
.btn--glass{
  background: rgba(159,156,154,0.22);
  border: 1px solid rgba(149,149,149,1);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 10px 30px rgba(0,0,0,0.18);

  transition:
    background .25s ease,
    transform .15s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.btn--glass:hover{
  background: rgba(159,156,154,0.30);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 16px 40px rgba(0,0,0,0.24);
  border-color: rgba(255,255,255,0.22);
}

/* top-right contact */
.btn--top{
  font-weight: 500;
  font-size: 20px;
  color: var(--white);

  padding: var(--btn-pad-y) var(--btn-pad-x);
  width: 189px;
  height: 48px;
}

/* hero contact (next to Download CV) */
.btn--primary{
  font-weight: 700;
  font-size: 28px;
  color: var(--white);

  padding: var(--btn-pad-y) var(--btn-pad-x);
  width: 189px;
  height: 48px;
}

/* Download CV button */
.btn--outline{
  background: transparent;
  border: 2px solid var(--grey);
  color: var(--grey);
  font-weight: 700;
  font-size: 20px;

  height: 52px;
  padding: 0 26px;

  transition:
    color .2s ease,
    border-color .2s ease,
    background .2s ease,
    transform .15s ease,
    box-shadow .25s ease;
}

.btn--outline:hover{
  color: #ffffff;
  border-color: #ffffff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

/* HERO */
.hero{
  position: relative;
  min-height: 100vh;
  padding-bottom: var(--wave-h);
}

.hero-stack{
  position: absolute;
  left: var(--hero-x);
  top: var(--hero-y);
  width: var(--hero-w);
  display: flex;
  flex-direction: column;
  gap: var(--hero-gap);
  z-index: 5;
}

.hero__kicker,
.hero__name,
.hero__portfolio,
.hero__role{
  margin: 0;
}

.hero__kicker{
  font-weight: 600;
  font-size: 24px;
  color: var(--grey);
}

.hero__name{
  font-weight: 900;
  font-size: 70px;
  background: linear-gradient(90deg, #FFFFFF 0%, #959595 42%, #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.hero__portfolio{
  font-weight: 700;
  font-size: 28px;
  color: var(--grey);
  letter-spacing: 1px;
}

.hero__role{
  font-weight: 700;
  font-size: 28px;
  color: var(--grey);
}

.hero__actions{
  display:flex;
  gap: var(--btn-gap);
  align-items:center;
}

/* WAVE SHAPE */
.wave{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--wave-h);
  pointer-events: none;
  z-index: 2;
}

.wave svg{
  width: 100%;
  height: 100%;
  display: block;
}

.wave__fill{
  fill: var(--wave-fill);
}

/* SERVICES */
.services{
  position: relative;
  padding: 140px 0 120px;
}

.overlay{
  position:absolute;
  inset:0;
  background: var(--overlay);
  pointer-events:none;
}

.services-inner{
  position: relative;
  z-index: 2;
}

.services__title{
  margin: 0 0 60px 0;
  text-align:center;
  font-weight: 700;
  font-size: 40px;
  color: var(--white);
}

/* CARDS GRID */
.cards{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.card{
  width: 100%;
  max-width: 402.5px;
  height: 280px;
  padding: 26px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease;
  justify-self: center;
}

.card:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,0.085);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}

.card__icon{
  width: 44px;
  height: 44px;
  margin: 4px auto 18px;
  display:block;
  opacity: .95;
}

.card__title{
  margin: 0 0 12px 0;
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
}

.card__text{
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  color: var(--white);
  opacity: .9;
  line-height: 1.35;
}

/* BOTTOM CTA */
.services__cta{
  margin-top: 70px;
  display:flex;
  justify-content:center;
}

/* bottom contact: same padding + strong grey glass */
.btn--cta{
  /* zelfde basis als hero Contact me, maar net iets groter */
  padding: 14px 44px;

  width: 220px;   /* groter dan hero (189px), niet overdreven */
  height: 56px;   /* iets hoger dan hero (48px) */

  border-radius: 12px;
  font-weight: 700;
  font-size: 22px; /* logisch voor secondary CTA */
  color: var(--white);
}

/* RESPONSIVE (Mobile-First Approach) */
@media (max-width: 768px){
  html, body{ 
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }
  
  * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .container{ 
    width: 100% !important;
    max-width: 100vw !important;
    padding: 0 15px !important;
    margin: 0 auto !important;
    overflow-x: hidden !important;
  }
  
  .site-header {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    padding: 10px 0 !important;
  }
  
  .header-inner {
    width: 100% !important;
    max-width: 100vw !important;
    padding: 0 15px !important;
    overflow-x: hidden !important;
  }
  
  .nav{ 
    gap: 8px !important;
    font-size: 14px !important;
    flex-wrap: wrap !important;
    width: auto !important;
    max-width: calc(100vw - 150px) !important;
    display: flex !important;
  }
  
  .nav__link {
    font-size: 13px !important;
    padding: 6px 8px !important;
    min-height: 36px !important;
    display: flex !important;
    align-items: center !important;
    white-space: nowrap !important;
  }

  .btn--top {
    font-size: 12px !important;
    padding: 8px 12px !important;
    min-width: 80px !important;
    width: auto !important;
    height: auto !important;
    min-height: 36px !important;
  }

  .hero{
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding-bottom: 100px !important;
  }

  .hero-stack{
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    margin: 60px 0 0 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    gap: 15px !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
  }

  .hero__kicker {
    font-size: 16px !important;
  }

  .hero__name{ 
    font-size: 36px !important;
    line-height: 1.1 !important;
    word-break: break-word !important;
  }

  .hero__portfolio {
    font-size: 20px !important;
  }

  .hero__role {
    font-size: 18px !important;
  }
  
  .hero__actions{ 
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    width: 100% !important;
  }
  
  .btn--primary, .btn--outline { 
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    min-height: 44px !important;
    font-size: 16px !important;
    padding: 12px 20px !important;
  }

  .wave {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .wave svg {
    width: 100% !important;
    max-width: 100vw !important;
  }

  .services{
    padding: 40px 0 !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .services-inner {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .services__title{
    font-size: 28px !important;
    margin-bottom: 30px !important;
    padding: 0 20px !important;
  }
  
  .cards{ 
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 20px !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  
  .card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    height: auto !important;
    min-height: 200px !important;
    box-sizing: border-box !important;
  }

  .card__title{
    font-size: 20px !important;
  }

  .card__text{
    font-size: 16px !important;
  }

  .services__cta {
    margin-top: 40px !important;
    padding: 0 20px !important;
  }

  .btn--cta {
    width: 100% !important;
    max-width: 250px !important;
    font-size: 18px !important;
    padding: 14px 30px !important;
  }
}

@media (max-width: 480px){
  .hero-stack {
    margin: 40px 0 0 0 !important;
    padding: 0 15px !important;
  }

  .hero__name {
    font-size: 32px !important;
  }

  .services__title {
    font-size: 24px !important;
  }

  .cards {
    padding: 0 15px !important;
  }

  .nav{ 
    gap: 6px !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    display: flex !important;
    max-width: calc(100vw - 100px) !important;
  }

  .nav__link {
    font-size: 11px !important;
    padding: 4px 6px !important;
    min-height: 32px !important;
  }
  
  .btn--top {
    font-size: 11px !important;
    padding: 6px 10px !important;
    min-width: 60px !important;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn, .tab, .nav__link, .card {
    min-height: 44px;
  }
  
  .tab {
    padding: 12px 16px;
  }
  
  .card:hover {
    transform: none;
  }
  
  .btn--glass:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce){
  .btn, .card, .nav__link{ transition: none !important; }
  
  .apple-content,
  .about-content,
  .skills-grid,
  .coming-soon-content {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================
   PROJECTS PAGE
   ========================= */

.page--projects{
  background: #393633; /* exact */
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* hero */

/* Apple Vision Pro Style Layout - DESKTOP FIRST */
.apple-hero {
  height: 100vh;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  text-align: center;
  position: relative;
  width: 100%;
  overflow-x: hidden;
  padding-top: 15vh;
}

.apple-hero-content {
  max-width: 800px;
  padding: 0 40px;
  width: 100%;
}

.apple-hero-title {
  font-family: "Odor Mean Chey", serif !important;
  font-size: 72px !important; /* Fixed desktop size */
  font-weight: normal;
  color: var(--white) !important;
  margin: 0 0 20px 0;
  line-height: 1.1;
  display: block !important;
  visibility: visible !important;
}

.apple-hero-subtitle {
  font-family: "Lato", sans-serif !important;
  font-size: 24px !important; /* Fixed desktop size */
  font-weight: 400;
  color: rgba(255,255,255,0.8) !important;
  line-height: 1.4;
  margin: 0;
  display: block !important;
  visibility: visible !important;
}

.apple-section {
  height: 100vh !important;
  position: relative;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100%;
  overflow-x: hidden;
}

.apple-content {
  width: min(var(--container), calc(100% - 40px)) !important;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 80px; /* Fixed desktop gap */
  align-items: center;
  opacity: 0;
  transform: translateY(100px);
  visibility: visible !important;
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-width: 100%;
}

.apple-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.apple-content.reverse {
  direction: rtl;
}

.apple-content.reverse > * {
  direction: ltr;
}

.apple-text-content {
  padding: 40px 0;
}

.apple-section-title {
  font-family: "Odor Mean Chey", serif !important;
  font-size: 64px !important; /* Fixed desktop size */
  font-weight: normal;
  color: var(--white) !important;
  line-height: 1.1;
  margin: 0 0 30px 0;
  display: block !important;
  visibility: visible !important;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.apple-content.animate-in .apple-section-title {
  opacity: 1;
  transform: translateY(0);
}

.apple-section-text {
  font-family: "Lato", sans-serif !important;
  font-size: 20px !important; /* Fixed desktop size */
  font-weight: 400;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.5;
  margin: 0;
  display: block !important;
  visibility: visible !important;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.apple-content.animate-in .apple-section-text {
  opacity: 1;
  transform: translateY(0);
}

.apple-media-content {
  display: flex !important;
  justify-content: center;
  align-items: center;
  visibility: visible !important;
  opacity: 0;
  transform: scale(0.8) translateY(50px);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}

.apple-content.animate-in .apple-media-content {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.apple-project-image {
  width: 100% !important;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Responsive Apple */
@media (max-width: 768px) {
  .page--projects {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .apple-hero {
    padding: 20px 0 !important;
    overflow-x: hidden !important;
    align-items: flex-start !important;
    padding-top: 10vh !important;
  }

  .apple-hero-content {
    max-width: 90% !important;
    padding: 0 30px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
  }

  .apple-hero-title {
    font-size: 36px !important;
    margin-bottom: 15px !important;
  }

  .apple-hero-subtitle {
    font-size: 16px !important;
  }

  .apple-section {
    height: auto !important;
    min-height: 60vh !important;
    padding: 40px 0 !important;
    overflow-x: hidden !important;
  }

  .apple-content {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: center !important;
    padding: 0 5% !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    justify-items: center !important;
    align-items: center !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
  }
  
  .apple-content.reverse {
    direction: ltr !important;
  }
  
  .apple-hero-title {
    font-size: 36px !important;
  }
  
  .apple-section-title {
    font-size: 28px !important;
  }
  
  .apple-section-text {
    font-size: 16px !important;
  }
  
  .apple-text-content {
    padding: 20px 0 !important;
    width: 100% !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .apple-section-title {
    font-size: 28px !important;
    text-align: center !important;
    margin: 0 auto 20px auto !important;
    width: 100% !important;
  }

  .apple-section-text {
    font-size: 16px !important;
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 95% !important;
  }

  .apple-media-content {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  
  .apple-project-image {
    max-width: 85% !important;
    width: 100% !important;
    margin: 0 auto !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  .apple-hero-content {
    padding: 0 15px;
  }
  
  .apple-content {
    padding: 0 15px;
    gap: 20px;
  }
  
  .apple-text-content {
    padding: 20px 0;
  }
  
  .apple-project-image {
    max-width: min(280px, 80vw);
  }
}

/* Responsive Apple */
@media (max-width: 950px) {
  .apple-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .apple-content.reverse {
    direction: ltr;
  }
  
  .apple-hero-title {
    font-size: 48px;
  }
  
  .apple-section-title {
    font-size: 40px;
  }
  
  .apple-section-text {
    font-size: 18px;
  }
}

.projects-hero{
  text-align: center;
  padding-top: 18px;
}

.projects-title{
  margin: 0 0 18px 0;
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
}

.projects-subtitle{
  margin: 18px auto 0;
  max-width: 720px;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.45;
}

/* tabs / pills */
.projects-tabs{
  display: inline-flex;
  gap: 14px; /* Fixed desktop gap */
  padding: 15px 0;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto 20px auto;
}

.tab{
  height: auto;
  min-height: 28px;
  padding: 6px 14px; /* Fixed desktop padding */
  border-radius: 8px;
  border: 1px solid rgba(149,149,149,1);
  background: rgba(159,156,154,0.18);
  color: rgba(255,255,255,0.85);
  font-family: inherit;
  font-weight: 600;
  font-size: 12px; /* Fixed desktop size */
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.tab:hover{
  background: rgba(159,156,154,0.26);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

.tab.is-active{
  background: rgba(159,156,154,0.32);
  color: rgba(255,255,255,0.95);
}

/* Mobile specific tab styles */
@media (max-width: 768px) {
  .projects-tabs {
    gap: 6px !important;
    padding: 10px 20px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    margin: 0 auto 15px auto !important;
  }
  
  .tab {
    padding: 8px 12px !important;
    font-size: 11px !important;
    min-height: 36px !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 480px) {
  .projects-tabs {
    gap: 6px;
    padding: 15px 5px;
  }
  
  .tab {
    padding: 6px 10px;
    font-size: 10px;
    min-height: 28px;
  }
}

/* project layout */
.project-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
  margin-top: 90px;
}

.project-row--alt{
  margin-top: 120px;
}

.project-row--bottom{
  margin-top: 120px;
}

.project-heading--right{
  margin: 0 0 24px 0;
  text-align: left;
}

.project-image{
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,0.35));
}

/* image positioning like your screenshot */
.project-image--left{
  margin-top: 10px;
  width: 320px;
}

.project-image--right{
  margin-top: 40px;
  width: 380px; /* Nog groter gemaakt van 320px naar 380px */
  margin-left: -20px; /* Naar links geschoven */
}

.project-right--image{
  display: flex;
  justify-content: flex-end;
}

/* bottom row image slightly lower/softer */
.project-left--image .project-image{
  width: 480px; /* Nog groter gemaakt van 420px naar 480px */
  opacity: 0.95;
}

/* responsive */
@media (max-width: 950px){
  .projects{
    width: min(var(--container), calc(100% - 48px));
    padding: 60px 0 100px;
  }

  .project-row{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .project-image--right{
    margin-left: 0;
  }

  .project-text{
    max-width: 100%;
  }
}
/* white circular glow behind transparent image */
.image-glow{
  position: relative;
  display: inline-block;
}

.image-glow::before{
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: 50%;

  /* white soft circle */
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.40) 0%,
    rgba(255,255,255,0.22) 35%,
    rgba(255,255,255,0.08) 55%,
    rgba(255,255,255,0.0) 70%
  );

  filter: blur(14px);
  z-index: 0;
}

.image-glow img{
  position: relative;
  z-index: 1;
}

/* Updated project typography */
.project-heading{
  margin: 0 0 24px 0;
  font-family: "Odor Mean Chey", serif;
  font-size: 64px;
  font-weight: normal;
  color: var(--white);
  line-height: 1.1;
}

.project-text{
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  max-width: 430px;
}

/* CTA Sections */
.cta-sections{
  width: min(var(--container), calc(100% - 140px));
  margin: 80px auto 0;
  padding: 60px 0 80px;
  border-top: 1px solid rgba(255,255,255,0.3);
}

.cta-section{
  text-align: center;
  margin-bottom: 60px;
}

.cta-question{
  margin: 0 0 20px 0;
  font-family: "Lato", sans-serif;
  font-size: 24px; /* Fixed desktop size */
  font-weight: 400;
  color: var(--white);
}

.cta-link{
  font-family: "Lato", sans-serif;
  font-size: 24px; /* Fixed desktop size */
  font-weight: 400;
  color: #6B9BD1;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}

.cta-link:hover{
  color: #9B59B6;
}

.cta-link--inactive{
  color: #6B9BD1;
  cursor: default;
  text-decoration: underline;
}

.cta-link--inactive:hover{
  color: #9B59B6;
}

/* Mobile CTA Styles */
@media (max-width: 768px) {
  .cta-sections {
    width: 100% !important;
    margin: 30px 0 0 0 !important;
    padding: 30px 20px 40px !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  
  .cta-section {
    margin-bottom: 30px !important;
  }
  
  .cta-question,
  .cta-link {
    font-size: 18px !important;
  }

  .coming-soon-section {
    height: auto !important;
    min-height: 60vh !important;
    padding: 40px 0 !important;
    overflow-x: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .coming-soon-content {
    width: 100% !important;
    max-width: 90% !important;
    padding: 0 5% !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .coming-soon-title {
    font-size: 32px !important;
    text-align: center !important;
    margin: 0 auto 15px auto !important;
    width: 100% !important;
  }

  .coming-soon-subtitle {
    font-size: 24px !important;
    text-align: center !important;
    margin: 0 auto 25px auto !important;
    width: 100% !important;
  }

  .coming-soon-text {
    font-size: 16px !important;
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 95% !important;
  }
}

@media (max-width: 480px) {
  .cta-sections {
    width: calc(100% - 20px);
    padding: 30px 0 40px;
  }
  
  .cta-section {
    margin-bottom: 30px;
  }
}

/* Coming Soon Sections */
.coming-soon-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, rgba(191,171,155,0.05) 0%, rgba(92,86,82,0.05) 100%);
  width: 100%;
  overflow-x: hidden;
}

.coming-soon-content {
  max-width: 800px;
  padding: 0 40px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
}

.coming-soon-section.animate-in .coming-soon-content {
  opacity: 1;
  transform: translateY(0);
}

.coming-soon-title {
  font-family: "Odor Mean Chey", serif;
  font-size: 72px; /* Fixed desktop size */
  font-weight: normal;
  color: var(--white);
  margin: 0 0 20px 0;
  line-height: 1.1;
}

.coming-soon-subtitle {
  font-family: "Lato", sans-serif;
  font-size: 36px; /* Fixed desktop size */
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin: 0 0 40px 0;
  line-height: 1.2;
  font-style: italic;
}

.coming-soon-text {
  font-family: "Lato", sans-serif;
  font-size: 20px; /* Fixed desktop size */
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

/* =========================
   CONTACT PAGE
   ========================= */

.page--contact{
  background: #393633; /* Same as projects page */
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Contact Hero */
.contact{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 0;
  max-width: 100%;
}

.contact-hero{
  text-align: center;
  padding: 40px 0 60px;
}

.contact-title{
  margin: 0 0 20px 0;
  font-weight: 700;
  font-size: 48px; /* Fixed desktop size */
  color: var(--white);
}

.contact-subtitle{
  margin: 0;
  font-weight: 400;
  font-size: 18px; /* Fixed desktop size */
  color: rgba(255,255,255,0.75);
}

/* Contact Form */
.contact-form-section{
  display: flex;
  justify-content: center;
  padding-bottom: 80px;
  width: 100%;
}

.contact-form{
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 25px;
}

.form-row:last-of-type{
  grid-template-columns: 1fr 2fr;
}

.form-input{
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: "Lato", sans-serif;
  font-size: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-input::placeholder{
  color: rgba(255,255,255,0.6);
}

.form-input:focus{
  outline: none;
  background: rgba(255,255,255,0.15);
}

.form-textarea{
  resize: vertical;
  min-height: 120px;
}

.form-select{
  cursor: pointer;
}

.form-select option{
  background: white;
  color: #333;
  padding: 10px;
}

.btn--send{
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  float: right;
  margin-top: 20px;
  /* Glass effect styling is now inherited from .btn--glass */
}

/* Footer */
.contact-footer{
  background: rgba(255,255,255,0.9);
  color: #333;
  padding: 60px 0 40px;
  margin-top: 80px;
}

.footer-content{
  width: min(var(--container), calc(100% - 140px));
  margin: 0 auto;
  text-align: center;
}

.footer-logo{
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.footer-nav{
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-link{
  color: #666;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover{
  color: #333;
}

.footer-social{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-link{
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.social-link:hover{
  transform: scale(1.1);
}

.footer-contact{
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.contact-email,
.contact-phone{
  color: #666;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-email:hover,
.contact-phone:hover{
  color: #333;
}

.footer-copyright{
  font-size: 14px;
  color: #999;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

/* Responsive Contact Page */
@media (max-width: 768px){
  .page--contact {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .contact {
    width: 100% !important;
    padding: 20px 0 0 !important;
    max-width: 100vw !important;
  }
  
  .contact-hero {
    padding: 20px 20px 30px !important;
  }
  
  .contact-title {
    font-size: 32px !important;
  }
  
  .contact-subtitle {
    font-size: 16px !important;
  }
  
  .contact-form-section {
    padding-bottom: 40px !important;
    width: 100% !important;
  }

  .contact-form {
    max-width: 100% !important;
    padding: 0 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .form-row{
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    margin-bottom: 15px !important;
  }
  
  .form-input {
    padding: 12px 15px !important;
    font-size: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .btn--send {
    width: 100% !important;
    float: none !important;
    margin-top: 15px !important;
    padding: 15px 30px !important;
    font-size: 16px !important;
  }
  
  /* Footer Mobile Styles */
  .contact-footer {
    padding: 30px 0 20px !important;
    margin-top: 40px !important;
    overflow-x: hidden !important;
  }
  
  .footer-content {
    width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
  }
  
  .footer-logo {
    font-size: 20px !important;
    margin-bottom: 25px !important;
  }
  
  .footer-nav{
    flex-wrap: wrap !important;
    gap: 15px !important;
    margin-bottom: 25px !important;
    justify-content: center !important;
  }
  
  .footer-link {
    font-size: 14px !important;
  }
  
  .footer-social {
    gap: 15px !important;
    margin-bottom: 25px !important;
  }
  
  .social-link {
    font-size: 20px !important;
  }
  
  .footer-contact{
    flex-direction: column !important;
    gap: 12px !important;
    margin-bottom: 25px !important;
  }
  
  .contact-email,
  .contact-phone {
    font-size: 14px !important;
  }
  
  .footer-copyright {
    font-size: 12px !important;
    padding-top: 15px !important;
  }
}

@media (max-width: 480px){
  .contact {
    width: calc(100% - 30px);
  }
  
  .contact-form {
    max-width: calc(100% - 10px);
    padding: 0 5px;
  }
  
  .form-input {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .footer-content {
    width: calc(100% - 30px);
    padding: 0 15px;
  }
  
  .footer-nav {
    gap: 10px;
  }
  
  .footer-link {
    font-size: 13px;
  }
}

/* =========================
   ABOUT PAGE - APPLE STYLE
   ========================= */

.page--about{
  background: #393633; /* Same as other pages */
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* About Hero */
.about-hero {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.about-hero-content {
  max-width: 800px;
  padding: 0 40px;
}

.about-hero-title {
  font-family: "Lato", sans-serif;
  font-size: 72px; /* Fixed desktop size */
  font-weight: 700;
  color: var(--white);
  margin: 0 0 20px 0;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-hero-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.about-hero-subtitle {
  font-family: "Lato", sans-serif;
  font-size: 24px; /* Fixed desktop size */
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.about-hero-subtitle.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* About Content Section */
.about-content-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  width: 100%;
  overflow-x: hidden;
}

.about-content {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
  opacity: 0;
  transform: translateY(100px);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-width: 100%;
}

.about-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.about-image-content {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.8) translateY(50px);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.about-content.animate-in .about-image-content {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.about-profile-image {
  width: 100%;
  max-width: min(400px, 85vw);
  height: auto;
  border-radius: 20px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
}

.about-profile-image:hover {
  transform: scale(1.05);
}

.about-text-content {
  padding: 40px 0;
}

.about-text-block {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
}

.about-content.animate-in .about-text-block {
  opacity: 1;
  transform: translateY(0);
}

.about-paragraph {
  font-family: "Lato", sans-serif;
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin: 0 0 24px 0;
  text-align: justify;
}

.about-paragraph:last-of-type {
  margin-bottom: 40px;
}

/* Download CV Button */
.btn--download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn--download:hover {
  transform: translateY(-2px);
}

.download-icon {
  font-size: 18px;
}

/* Skills Section */
.about-skills-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(191,171,155,0.05) 0%, rgba(92,86,82,0.05) 100%);
  width: 100%;
  overflow-x: hidden;
}

.about-skills-content {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  max-width: 100%;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 60px;
  justify-items: center;
  opacity: 0;
  transform: translateY(100px);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-width: 100%;
}

.skills-grid.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.skill-item {
  text-align: center;
  opacity: 0;
  transform: translateY(50px) scale(0.8);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.skills-grid.animate-in .skill-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.skills-grid.animate-in .skill-item:nth-child(1) { transition-delay: 0.1s; }
.skills-grid.animate-in .skill-item:nth-child(2) { transition-delay: 0.2s; }
.skills-grid.animate-in .skill-item:nth-child(3) { transition-delay: 0.3s; }
.skills-grid.animate-in .skill-item:nth-child(4) { transition-delay: 0.4s; }

.skill-icon-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.skill-icon-wrapper:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.skill-icon {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.skill-percentage {
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px 0;
}

.skill-name {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* Responsive About */
@media (max-width: 768px) {
  .page--about {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .about-hero {
    height: auto !important;
    min-height: 50vh !important;
    padding: 40px 0 !important;
  }

  .about-hero-content {
    padding: 0 20px !important;
    max-width: 100% !important;
  }

  .about-hero-title {
    font-size: 36px !important;
  }

  .about-hero-subtitle {
    font-size: 18px !important;
  }

  .about-content-section {
    min-height: auto !important;
    padding: 40px 0 !important;
    overflow-x: hidden !important;
  }

  .about-content {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: center !important;
    padding: 0 20px !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  
  .about-hero-content {
    padding: 0 20px !important;
  }
  
  .about-text-content {
    padding: 20px 0 !important;
  }
  
  .about-paragraph {
    font-size: 16px !important;
    text-align: left !important;
  }

  .about-profile-image {
    max-width: 80% !important;
    width: 100% !important;
  }

  .about-skills-section {
    padding: 40px 0 !important;
    overflow-x: hidden !important;
  }

  .about-skills-content {
    width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
  }
  
  .skills-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
  }

  .skill-icon-wrapper {
    width: 80px !important;
    height: 80px !important;
  }

  .skill-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .skill-percentage {
    font-size: 18px !important;
  }

  .skill-name {
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  .hero-stack {
    margin: 40px 0 0 0 !important;
    padding: 0 15px !important;
  }

  .hero__name {
    font-size: 32px !important;
  }

  .services__title {
    font-size: 24px !important;
  }

  .cards {
    padding: 0 15px !important;
  }

  .nav{ 
    gap: 6px !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    display: flex !important;
    max-width: calc(100vw - 100px) !important;
  }

  .nav__link {
    font-size: 11px !important;
    padding: 4px 6px !important;
    min-height: 32px !important;
  }
  
  .btn--top {
    font-size: 11px !important;
    padding: 6px 10px !important;
    min-width: 60px !important;
  }

  .apple-hero-content,
  .apple-content,
  .coming-soon-content,
  .contact-form,
  .footer-content,
  .about-hero-content,
  .about-content,
  .about-skills-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .skills-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .apple-hero-title,
  .coming-soon-title {
    font-size: 28px !important;
  }

  .apple-section-title {
    font-size: 24px !important;
  }

  .contact-form {
    padding: 0 15px !important;
  }

  .footer-content {
    padding: 0 15px !important;
  }

  .popup-content {
    max-width: calc(100vw - 30px) !important;
    padding: 25px 20px !important;
  }
}

@media (max-width: 480px) {
  .tab {
    padding: 6px 10px !important;
    font-size: 10px !important;
    min-height: 32px !important;
  }
}

/* Popup Mobile Styles */
@media (max-width: 768px) {
  .popup-content {
    max-width: calc(100vw - 40px) !important;
    width: 90% !important;
    margin: 0 20px !important;
    padding: 30px 25px !important;
    box-sizing: border-box !important;
  }

  .popup-title {
    font-size: 28px !important;
    margin-bottom: 20px !important;
  }

  .popup-text {
    font-size: 14px !important;
    margin-bottom: 25px !important;
  }

  .popup-footer {
    padding-top: 20px !important;
  }

  .popup-return,
  .popup-link {
    font-size: 14px !important;
  }
}
/* Thank You Popup */
.popup-overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-overlay.show{
  display: flex;
}

.popup-content{
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 60px 80px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  margin: 0 20px;
}

.popup-title{
  margin: 0 0 30px 0;
  font-family: "Lato", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
}

.popup-text{
  margin: 0 0 40px 0;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.popup-footer{
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 30px;
}

.popup-return{
  margin: 0 0 10px 0;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
}

.popup-link{
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #6B9BD1;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.popup-link:hover{
  color: #9B59B6;
}
/* Smooth Scrolling for Projects Page */
.page--projects {
  scroll-behavior: smooth;
}

/* Enhanced smooth scrolling with momentum (webkit browsers) */
.page--projects {
  -webkit-overflow-scrolling: touch;
}

/* Scroll Animation Enhancements */
@media (prefers-reduced-motion: no-preference) {
  .page--projects {
    scroll-behavior: smooth;
  }
  
  /* Smooth transforms for scroll animations */
  .project-row {
    will-change: transform, opacity;
  }
  
  .project-image {
    will-change: transform;
    transition: transform 0.1s ease-out;
  }
  
  .project-heading,
  .project-text {
    will-change: transform, opacity;
  }
  
  /* Enhance image hover effects during scroll */
  .project-image:hover {
    transform: scale(1.05) !important;
    transition: transform 0.3s ease-out;
  }
}
/* Apple-style Project Layout */
.apple-project-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apple-project-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.apple-project-content {
  width: min(var(--container), calc(100% - 140px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.apple-project-title {
  font-family: "Odor Mean Chey", serif;
  font-size: 64px;
  font-weight: normal;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 30px 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.apple-project-section.animate-in .apple-project-title {
  opacity: 1;
  transform: translateY(0);
}

.apple-project-description {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}

.apple-project-section.animate-in .apple-project-description {
  opacity: 1;
  transform: translateY(0);
}

.apple-project-image {
  opacity: 0;
  transform: scale(0.8) translateY(50px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.apple-project-section.animate-in .apple-project-image {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.apple-project-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 18px;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,0.35));
}

/* Responsive */
@media (max-width: 950px) {
  .apple-project-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .apple-project-title {
    font-size: 48px;
  }
  
  .apple-project-description {
    font-size: 18px;
  }
}
/* Apple Vision Pro Style Layout */
.apple-hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.apple-hero-content {
  max-width: 800px;
  padding: 0 40px;
}

.apple-hero-title {
  font-family: "Odor Mean Chey", serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: normal;
  color: var(--white);
  margin: 0 0 30px 0;
  line-height: 1.1;
}

.apple-hero-subtitle {
  font-family: "Lato", sans-serif;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
  margin: 0;
}

.apple-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.apple-sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apple-content {
  width: min(var(--container), calc(100% - 140px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  opacity: 0;
  transform: translateY(100px);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apple-content.reverse {
  direction: rtl;
}

.apple-content.reverse > * {
  direction: ltr;
}

.apple-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.apple-text-content {
  padding: 40px 0;
}

.apple-section-title {
  font-family: "Odor Mean Chey", serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: normal;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 30px 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.apple-content.animate-in .apple-section-title {
  opacity: 1;
  transform: translateY(0);
}

.apple-section-text {
  font-family: "Lato", sans-serif;
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.apple-content.animate-in .apple-section-text {
  opacity: 1;
  transform: translateY(0);
}

.apple-media-content {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.8) translateY(50px);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}

.apple-content.animate-in .apple-media-content {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.apple-project-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
}

.apple-project-image:hover {
  transform: scale(1.05);
}

/* Parallax effect */
.apple-section[data-section="1"] {
  background: linear-gradient(135deg, rgba(191,171,155,0.1) 0%, rgba(92,86,82,0.1) 100%);
}

.apple-section[data-section="2"] {
  background: linear-gradient(135deg, rgba(92,86,82,0.1) 0%, rgba(31,29,28,0.1) 100%);
}

.apple-section[data-section="3"] {
  background: linear-gradient(135deg, rgba(31,29,28,0.1) 0%, rgba(191,171,155,0.1) 100%);
}

/* Responsive */
@media (max-width: 950px) {
  .apple-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .apple-content.reverse {
    direction: ltr;
  }
  
  .apple-hero-content {
    padding: 0 20px;
  }
  
  .apple-text-content {
    padding: 20px 0;
  }
}