@font-face {
  font-family: "Birthlong";
  src: url("../Fonts/Birthlong.otf") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../Fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "Poppins-Medium";
  src: url("../Fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("../Fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: bold;
}
@font-face {
  font-family: "Delight";
  src: url("../Fonts/delight-regular.otf") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "Delight_Medium";
  src: url("../Fonts/delight-medium.otf") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "Delight_Bold";
  src: url("../Fonts/delight-bold.otf") format("opentype");
  font-weight: bold;
}

/* ───────────── BASE ───────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000000;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ───────────── TOKENS ───────────── */
:root {
  --black: #000000;
  --dark: #111111;
  --card: #181818;
  --border: #2a2a2a;
  --yellow: #ffd84d;
  --yellow2: #e6b800;
  --white: #ffffff;
  --muted: #999999;
  --radius: 14px;
  --px: 8%;
  --clr-bg:        #0a0a0a;
  --clr-surface:   #111111;
  --clr-card:      #161616;
  --clr-border:    #2a2a2a;
  --clr-yellow:    #d4e600;
  --clr-yellow-dim:#b8cc00;
  --clr-white:     #ffffff;
  --clr-grey:      #a0a0a9;
  --clr-grey-light:#cccccc;

  --font-body:     "Poppins", sans-serif;
  --font-bold:     "Poppins-Bold", sans-serif;
  --font-medium:   "Poppins-Medium", sans-serif;
  --font-script:   "Birthlong", cursive;

  --nav-h:         80px;
  --radius:        12px;
  --transition:    0.3s ease;
}

/* ═══════════════ NAVBAR ═══════════════ */
nav {
  position: absolute;
  width: 100%;
  padding: 20px var(--px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  gap: 20px;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: var(--yellow);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--yellow);
}

.nav-cta {
  border: var(--yellow);
  font-family: 'Poppins';
  background: var(--yellow);
  color: #000;
  padding: 9px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}

.nav-cta:hover {
  background: var(--yellow2);
}

.dot {
  color: #000;
  font-size: 10px;
}

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hamburger → X animation when active */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav drawer ── */
@media (max-width: 768px) {
  .nav-links {
    display: flex !important;          /* override the "display:none" rule */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    list-style: none;

    /* Full-screen overlay */
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 150;

    /* Hidden by default — slide in from right */
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity   0.35s ease;
  }

  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.03em;
  }

  /* Show CTA button inside drawer */
  .nav-links .nav-cta-mobile {
    display: flex;
  }

  /* Keep hamburger above the drawer */
  .hamburger {
    z-index: 200;
    position: relative;
  }
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  min-height: 100vh;
  background: url("../Images/project main image.png") no-repeat center / cover;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px var(--px) 200px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.18));
}

.hero-content {
  position: relative;
  max-width: 820px;
}

.hero h1 {
  font-size: 54px;
  line-height: 1.1;
  margin-bottom: 22px;
  font-family: "Delight", serif;
  letter-spacing: 0.5px;
}

.hero .script {
  color: var(--yellow);
  font-family: "Birthlong", cursive;
}

.hero p {
font-size: 16px;
    color: #ddd;
    margin-bottom: 30px;
    max-width: 900px;
}

/* ═══════════════ STATS BAR ═══════════════ */
.stats-bar {
  position: absolute;
   margin-top: -10%;
  left: 0;
  width: 100%;
  padding: 30px var(--px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  gap: 50px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item .num {
  font-size: 22px;
  font-weight: 700;
  color: var(--yellow);
}

.stat-item .label {
  font-size: 12px;
  color: #bbb;
  margin-top: 2px;
}

.star-rating {
  width: auto;
  height: 16px;
  display: block;
  margin: 0 auto 4px;
}

/* ═══════════════ GLOBAL BUTTON ═══════════════ */
.btn-primary {
  font-family: 'poppins';
  display: inline-block;
  background: var(--yellow);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--yellow2);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;

  /* Glass Effect */
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  /* Border + Glow */
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 0 10px rgba(255, 255, 255, 0.15);

  /* Smooth */
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.03);

  /* Highlight on hover */
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);

  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 0 12px rgba(255, 255, 255, 0.25);
}



/* ═══════════════ SCRIPT GLOBAL ═══════════════ */
#script {
  color: var(--yellow);
  font-family: "Birthlong", cursive;

}

.script-heading {
  color: var(--yellow);
  font-family: "Birthlong", cursive;
  font-size: 40px;

}

.projects-section {
  padding: 60px 100px;
}
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.section-eyebrow {
  font-family: 'Delight';
    /* font-family: var(--yellow); */
    text-align: center;
    font-family: var(--font-bold);
    font-size: 33px;
    letter-spacing: 1px;
    color: var(--yellow);
    margin-bottom: -60px;
}

/* Project Card */
.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.project-card--reverse {
  direction: rtl;
}
.project-card--reverse > * {
  direction: ltr;
}

/* Images Column */
.project-images {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.img-main {
  width: 100%;
  height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.img-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
    margin-left: 67px;
}

.img-thumbs img {
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
  object-fit: cover;
  transition: transform var(--transition), opacity var(--transition);
}
.img-thumbs img:hover { transform: scale(1.04); opacity: 0.85; }

/* Info Column */
.project-title {
  font-family: 'Delight';
  /* font-family: var(--font-bold); */
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: 1;
  width: 79%;
}
.project-desc {
font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 36px;
    line-height: 1.7;
    width: 82%;
    /* font-family: var(--font-bold); */
    font-weight: bold;
}

/* Meta Grid */
.project-meta {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    margin-top: 36px;
    margin-bottom: 36px;
    padding-bottom: 28px;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.meta-item img {
    width: 38px;
}
/* .meta-item i {
  color: var(--clr-yellow);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
} */
.meta-item div {
  display: flex;
  flex-direction: column;
}
.meta-key {
  font-size: 0.87rem;
  color: var(--clr-grey);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.meta-val {
  font-family: var(--font-medium);
  font-size: 0.99rem;
  color: var(--clr-white);
}

/* Project Boxes */
.project-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: -40px;
}
.pbox {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 20px 18px 20px 35px;
}
.pbox h4 {
      font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--clr-white);
}
.pbox p {
font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    width: 102%;
}
.pbox-accent {
  background: #171900;
  border-color: rgba(212,230,0,0.25);
}
.pbox-accent h4 { color: var(--clr-yellow); }
.pbox-accent p  { color: var(--clr-grey-light); font-family: var(--font-medium); }





/* ═══════════════ CTA BANNER ═══════════════ */
.cta-banner {
  margin: 60px var(--px);
  height: 260px;
  border-radius: 20px;
  background: url("../Images/contact-sub-img.jpg") no-repeat center / cover;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 50px;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.15));
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content span {
  color: #ccc;
  font-size: 13px;
  letter-spacing: 1px;
}

.cta-content h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin: 10px 0 22px;
  font-family: "Delight", serif;
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
background: var(--yellow);
    padding: 60px var(--px) 20px;
    color: #000;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer .logo {
  font-family: "Birthlong", cursive;
  font-size: 40px;
  color: #000;
}

.footer-brand p {
  margin: 18px 0;
  line-height: 1.7;
  max-width: 300px;
  font-size: 14px;
}

.footer-socials {
  justify-content: center;
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.footer-socials a:hover {
  opacity: 0.75;
}

.footer-socials img {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #000;
  font-size: 14px;
  transition: opacity 0.3s;
}

.footer-col ul li a:hover {
  opacity: 0.6;
}

.footer-col p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: #000;
  font-size: 13px;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.6;
}



    /* ══════════ SCROLL REVEAL ══════════ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.active { opacity: 1; transform: translateY(0); }

    /* ══════════ RESPONSIVE ══════════ */

    /* Tablet: 768–1024px */
    @media (max-width: 1024px) {
      :root { --px: clamp(18px, 5vw, 50px); }

      .nav-links { gap: 24px; }
      .nav-links a { font-size: 13px; }

      .project-card { gap: 28px; }

      .footer-container { grid-template-columns: 1fr 1fr; }
    }

    /* Mobile: ≤768px */
    @media (max-width: 768px) {
      :root { --px: 20px; --nav-h: 64px; }

      .hero p { font-size: 14px; }

      /* Nav mobile */
      .hamburger { display: flex; }
      .nav-cta { display: none; }

      .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(6,6,6,0.97);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        z-index: 1000;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.38s cubic-bezier(0.4,0,0.2,1), opacity 0.38s ease;
      }
      .nav-links.open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: all;
      }
      .nav-links a { font-size: 20px; font-weight: 600; }

      /* Hero */
      .hero {
        padding: calc(var(--nav-h) + 40px) var(--px) 240px;
        min-height: 90vh;
      }
      .hero h1 { font-size: clamp(30px, 9vw, 46px); }
      .hero-btns { flex-direction: column; align-items: flex-start; }

      /* Stats bar — stack on mobile */
      .stats-bar {
        justify-content: center;
        gap: 20px;
        padding: 20px var(--px) 24px;
      }

      /* Project cards — single column */
      .project-card,
      .project-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
      }
      .project-card.reverse > * { direction: ltr; }

      /* Always show images first on mobile */
      .project-card.reverse .project-images { order: -1; }

      .project-boxes { grid-template-columns: 1fr; gap: 12px; }

      .project-meta { grid-template-columns: 1fr 1fr; gap: 14px; }

      /* CTA */


      /* Footer */
      .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .footer-brand p { max-width: 100%; }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }
    }

    /* Small mobile: ≤480px */
    @media (max-width: 480px) {
      .project-meta { grid-template-columns: 1fr; }
      .img-thumbs img { height: 72px; }

      .footer-container {
        text-align: center;
         grid-template-columns: 1fr -1fr;
       }
      .footer-brand { grid-column: 1 / -1; }
      .hero p { font-size: 14px; }
    }

    /* Very small: ≤360px */
    @media (max-width: 360px) {
      .footer-container {
         grid-template-columns: 1fr;
         text-align: center;
         }
      .hero p { font-size: 14px; }
    }















/* ── 980px : Laptop ── */
@media (max-width: 980px) {


  .project-card {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.25rem, 3vw, 2rem);
  }
  .img-main { height: clamp(200px, 26vw, 300px); 
  }
  .stats-container {
    margin: 0px 0px 0px 25%;
  }
  .project-title {
    font-size: 30px;
    width: 80%;
  }
  .project-desc{
    margin-bottom: 30px;
    width: 98%;
  }
  .project-meta{
    gap: 13px;
    margin-top: 30px;
    margin-bottom: 0px;
    padding-bottom: 18px;
  }

    
}

/* ── 768px : Tablet ── */
@media (max-width: 768px) {


  /* Project card → stack */
  .project-card,
  .project-card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 1.5rem;
  }
  .img-main { height: clamp(200px, 50vw, 320px); }
  .img-thumbs img { height: clamp(70px, 14vw, 110px); }

  .project-meta { gap: 1rem 1.5rem; }
  .section-container{
    gap: 70px;
  }

  /* Boxes → stack */
  .project-boxes { grid-template-columns: 1fr; gap: 1rem; }

}

/* ── 640px : Large Mobile ── */
@media (max-width: 640px) {


  .projects-section { padding: 2rem 1.25rem; }
  .project-title { 
    text-align: center;
    margin: 12px auto;
    
  }
  hr.line{
    margin: 0 auto;
    width: 91%;
  }
  .project-desc {
    width: 90%;
    margin: auto;
    margin-bottom: 30px;
  }
  .section-container {
    gap: 40px;
  }
  .section-eyebrow  { margin-bottom: -1.5rem; }

  .project-meta { 
    grid-template-columns: 1fr 1fr; gap: 0.875rem; 
    margin-left: 50px;
  }
  .meta-icon    { width: 28px; height: 28px; }

  .project-boxes { 
    gap: 0.875rem;
    margin-top: 0px;
  }
  .pbox { padding: 1rem 1rem 1rem 1.25rem; }
  .pbox h4 { font-size: 1rem; }
  .pbox p  { font-size: 0.8rem; }

  .cta-card   { height: clamp(140px, 42vw, 200px); }
  .cta-title  { font-size: clamp(1.1rem, 5vw, 1.5rem); }
  .btn-contact { font-size: 0.88rem; padding: 12px 30px; }

}

/* ── 480px : Mobile ── */
@media (max-width: 480px) {

  .project-desc {
    text-align: center;
  }
  hr.line{
    width: 85%;
    margin: 0 auto;
  }
  .project-meta {
    grid-template-columns: 1fr 1fr;
    gap: 0.775rem;
  }
  .meta-val{
    font-size: 0.88rem;
  }
  .meta-item img{
    width: 30px;
  }

  .img-main { height: clamp(180px, 55vw, 280px); }
  .img-thumbs img { height: clamp(60px, 16vw, 90px); }

}

/* ── 360px : Small Mobile ── */
@media (max-width: 360px) {


  .section-eyebrow { font-size: 21px; }
  .project-meta{
    grid-template-columns: 1fr;
    margin-left: 60px;
  }

  .img-thumbs { gap: 0.35rem; }
  .img-thumbs img { height: 55px; }

  .project-title { font-size: 1.25rem; }
  .pbox h4 { font-size: 0.92rem; }
  .pbox p  { font-size: 0.76rem; }
}


.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.reveal-left.active,
.reveal-right.active {
  transform: translateX(0);
}

/* Hero & Nav load animations */
.hero-content {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFade 1s ease 0.3s forwards;
}

@keyframes heroFade {
  to { opacity: 1; transform: translateY(0); }
}


.left-reveal {
  opacity: 0;
  transform: translateX(-100px);
  transition: 0.7s ease;
}

.left-reveal.active {
  opacity: 1;
  transform: translateX(0);
}

.right-reveal {
  opacity: 0;
  transform: translateX(100px);
  transition: 0.7s ease;
}

.right-reveal.active {
  opacity: 1;
  transform: translateX(0);
}

    @media (max-width: 576px) {
      .stats-bar {
        margin-top: -17%;
      }
    }
     @media (max-width: 504px) {
      .stats-bar {
        margin-top: -34%;
      }
    }
     @media (max-width: 360px) {
      .stats-bar {
        margin-top: -44%;
      }
    }
    @media (max-width: 376px) {
      .img-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-left: 67px;
}
    }
     @media (max-width: 376px) {
      .stats-bar {
        margin-top: -47%;
      }
    }
      @media (max-width: 380px) {
      .stats-bar {
        margin-top: -47%;
      }
      .img-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-left: 67px;
}
    }
     @media (max-width: 382px) {
      .stats-bar {
        margin-top: -47%;
      }
      .img-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-left: 67px;
}
    }

    @media (max-width: 470px) {
      .img-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-left: 67px;
}
    }


   



    

/* ═══════════════════════════════════════════════
   BLUR REVEAL SCROLL ANIMATION
   ═══════════════════════════════════════════════ */

.blur-reveal {
  opacity: 0;
  filter: blur(14px);
  transform: translateX(-40px);
  transition: opacity 0.9s ease, filter 0.9s ease, transform 0.9s ease;
}

.blur-reveal.active {
  opacity: 1;
  filter: blur(0px);
  transform: translateX(0px);
}

#blur-reveal {
  opacity: 0;
  filter: blur(14px);
  transform: translateX(-40px);
  transition: opacity 0.9s ease, filter 0.9s ease, transform 0.9s ease;
}

#blur-reveal.active {
  opacity: 1;
  filter: blur(0px);
  transform: translateX(0px);
}

.blur-reveal1 {
  opacity: 0;
  filter: blur(14px);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.blur-reveal1.active {
  opacity: 1;
  filter: blur(0px);
}

/* ═══════════════════════════════════════════════
   PAGE TRANSITION OVERLAY
   ═══════════════════════════════════════════════ */

#page-transition-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#page-transition-overlay.fade-out {
  opacity: 1;
  pointer-events: all;
}

body {
}

