/* =========================================
   GLOBAL DESIGN VARIABLES
   Easy, simple, ready-to-use
   ========================================= */

/* ---------- ROOT VARIABLES ---------- */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html, body{
    width: 100%;
    height: 100%;
   
}

body {
    /* overflow-x: hidden !important; */
    max-width: 100vw !important;
    position: relative;
}



:root {

    /* ------------------ FONTS ------------------ */
    --font-heading: 'Lora', serif;
    --font-body: 'Montserrat', sans-serif;

    /* ------------------ COLORS ------------------ */
    /* Primary Brand */
    --clr-primary: #4a263e;
    --clr-primary-dark: #3a1d30;
    --clr-primary-soft: #6a3f5f;

    /* Background */
    --clr-bg: #fff0e3;
    --clr-bg-soft: #ffe7d5;
    --clr-bg-border: #f9ddca;

    /* Accent (Buttons / Highlights) */
    --clr-accent: #fd8f8f;
    --clr-accent-dark: #f86b6b;
    --clr-accent-soft: #ffe0e0;

    /* ------------------ TEXT ------------------ */
    --text-dark: #3a1d30;
    --text-light: #fff0e3;
    --text-muted: #a28a96;

    /* ------------------ SHADOWS ------------------ */
    --shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 14px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 20px 40px rgba(0, 0, 0, 0.18);

    /* ------------------ BORDER RADIUS ------------------ */
    --radius-small: 4px;
    --radius-medium: 8px;
    --radius-large: 16px;
    --radius-pill: 999px;

    /* ------------------ SPACING SYSTEM ------------------ */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 32px;
    --space-8: 40px;
    --space-9: 56px;
    --space-10: 72px;

    /* ------------------ TYPOGRAPHY (MOBILE FIRST) ------------------ */
    --fs-h1: 2rem;
    --fs-h2: 1.75rem;
    --fs-h3: 1.5rem;
    --fs-h4: 1.25rem;

    --fs-body-lg: 1rem;
    --fs-body-md: .95rem;
    --fs-body-sm: .85rem;

    --fs-button: .8rem;
    --fs-label: .75rem;
}

/* ---------- TABLET ≥ 576px ---------- */
@media (min-width: 576px) {
    :root {
        --fs-h1: 2.3rem;
        --fs-h2: 2rem;
        --fs-h3: 1.5rem;
        --fs-h4: 1rem;

        --fs-body-lg: 1.05rem;
        --fs-body-md: 1rem;
        --fs-body-sm: .9rem;

        --fs-button: .82rem;
        --fs-label: .78rem;
    }
}

/* ---------- LAPTOP ≥ 992px ---------- */
@media (min-width: 992px) {
    :root {
        --fs-h1: 2.7rem;
        --fs-h2: 2.2rem;
        --fs-h3: 1.8rem;
        --fs-h4: 1rem;

        --fs-body-lg: 1.1rem;
        --fs-body-md: 1.02rem;
        --fs-body-sm: .92rem;

        --fs-button: .85rem;
        --fs-label: .8rem;
    }
}

/* ---------- DESKTOP ≥ 1400px ---------- */
@media (min-width: 1400px) {
    :root {
        --fs-h1: 3.1rem;
        --fs-h2: 2.5rem;
        --fs-h3: 2rem;
        --fs-h4: 1rem;

        --fs-body-lg: 1.15rem;
        --fs-body-md: 1.05rem;
        --fs-body-sm: .95rem;

        --fs-button: .9rem;
        --fs-label: .82rem;
    }
}


/* Custom max-width layout wrapper (NOT Bootstrap container) */
.layout-1200 {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    /* padding adjustable: 15–25 depending on need */
}

.layout-1300 {
     max-width: 1300px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Optional — if you want vertical spacing for sections */
.section-vertical-space {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

@media (max-width: 500px){
  .section-vertical-space {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}
}



/* ==========================Button css
==================================== */

/* =========================================
   PILL BUTTONS — THEME COLOR SWAP ON HOVER
   ========================================= */

.btn-pill {
    display: inline-block;
    padding: 12px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: var(--fs-button);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 
        background-color .35s ease,
        color .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        transform .25s ease;
    border: 2px solid transparent;
}

/* ------------------------------
   PRIMARY BUTTON (var(--clr-primary))
   ------------------------------ */
.btn-primary-theme {
    background: var(--clr-primary);
    color: var(--text-light);
}

.btn-primary-theme:hover {
    background: var(--clr-accent);
    color: var(--text-dark);
    box-shadow: 0 6px 16px rgba(253, 143, 143, 0.35);
    transform: translateY(-2px);
}

/* ------------------------------
   ACCENT BUTTON (var(--clr-accent))
   ------------------------------ */
.btn-accent-theme {
    background: var(--clr-accent);
    color: var(--text-dark);
}

.btn-accent-theme:hover {
    background: var(--clr-primary);
    color: var(--text-light);
    box-shadow: 0 6px 16px rgba(74, 38, 62, 0.30);
    transform: translateY(-2px);
}


.center-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 88;
    position: relative;
}

.center-btn a,
.center-btn .btn-pill {
    display: inline-block !important;
    width: auto !important;
}



/* css for google translate element
=================
===================== */
/* ================================
   FLOAT POSITION
================================ */
.lang-wrapper {
	position: fixed;
	top: 90px;
	right: -21px;
	z-index: 9999;
}

.lang-btn {
  background: linear-gradient(135deg, #ff7a7a, #ffb199);
  color: #3a1d30;
  padding: 10px 32px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255,122,122,0.4);
  transition: 0.3s;
}

.lang-btn:hover {
  transform: scale(1.08);
}

#google_translate_element {
  position: absolute;
  left: -9999px;
}

.goog-te-banner-frame,
.goog-logo-link,
.goog-te-gadget {
  display: none !important;
}

body { top: 0 !important; }


/* header css --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* HEADER BASE */
.main-header{
background:var(--clr-primary);
}

.main-header ul{
    margin-bottom: 0px !important;
}

/* TOP BAR */
.top-header{
padding:14px 0;
border-bottom:1px solid rgba(255,255,255,.15);
}

.top-header-inner{
display:flex;
align-items:center;
justify-content:space-between;
}

.header-logo-area img{
    width: 300px;
}



.header-side-images img{
    width: 300px;
}


.bottom-navbar {
	background: var(--clr-primary);
	padding: 25px 0;
	transition: all .3s ease;
}

/* STICKY STATE */
.bottom-navbar.sticky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: var(--shadow-medium);
}

/* NAVIGATION */
.main-nav{
display:flex;
justify-content:center;
gap:40px;
list-style:none;
}

.main-nav a{
color:var(--text-light);
font-family:var(--font-body);
font-size:var(--fs-body-md);
font-weight:600;
text-decoration:none;
display:flex;
align-items:center;
gap:6px;
transition:color .25s ease;
}

.main-nav a:hover{
color:var(--clr-accent);
}


/* DROPDOWN */
.nav-dropdown{
position:relative;
}

.dropdown-menu{
position:absolute;
top:100%;
left:0;
background:white;
min-width:220px;
border-radius:var(--radius-medium);
box-shadow:var(--shadow-medium);
padding:10px 0;
display:none;
}

.nav-dropdown:hover .dropdown-menu{
display:block;
}

.dropdown-menu li a{
display:block;
padding:10px 18px;
color:var(--clr-primary);
}

.dropdown-menu li a:hover{
background:var(--clr-primary);
color:white;
}


/* DROPDOWN ICON */
.dropdown-icon{
font-size:14px;
transition:transform .3s ease;
}

.nav-dropdown:hover .dropdown-icon{
transform:rotate(180deg);
}



/* MOBILE HEADER------------------------------------------------------------------------------------------------------ */

.mobile-header{

display:none;
align-items:center;
justify-content:space-between;

padding:12px 20px;

background:var(--clr-primary);

}

.mobile-logo img{
 width: 250px;
}

.menu-toggle{

background:none;
border:none;

font-size:30px;
color:white;

}


/* MOBILE MENU */

.mobile-menu{

position:fixed;
top:0;
right:-100%;

width:100%;
height:100vh;

background:var(--clr-primary);

z-index:99999;

padding:30px;

transition:right .4s ease;

overflow-y:auto;

}

.mobile-menu.open{
right:0;
}



/* HEADER */

.mobile-menu-header{

display:flex;
justify-content:space-between;
align-items:center;

margin-bottom:30px;

border-bottom:1px solid rgba(255,255,255,.15);

padding-bottom:15px;

}

.mobile-menu-header img{
    width: 250px;
}

#menuClose{

background:none;
border:none;

color:white;
font-size:28px;

}



/* LINKS */

.mobile-menu-links{

list-style:none;
padding:0;

}

.mobile-menu-links > li{

border-bottom:1px solid rgba(255,255,255,.12);

padding:14px 0;

}


/* MAIN LINKS */

.mobile-menu-links a{

color:var(--text-light);

font-size:1.1rem;

font-weight:600;

text-decoration:none;

display:block;

}



/* DROPDOWN HEAD */

.mobile-head{

display:flex;
justify-content:space-between;
align-items:center;

color:var(--text-light);

font-size:1.1rem;

font-weight:600;

cursor:pointer;

}

.mobile-head i{

transition:transform .3s ease;

}



/* SUB LINKS */

.mobile-sub{

list-style:none;

padding-left:15px;

margin-top:10px;

display:none;

}

.mobile-sub li{

padding:8px 0;

}

.mobile-sub a{

font-size:0.95rem;

color:var(--text-muted);

font-weight:500;

}

.mobile-sub a:hover{

color:var(--clr-accent);

}



/* ACTIVE DROPDOWN */

.mobile-dropdown.active .mobile-sub{
display:block;
}

.mobile-dropdown.active .mobile-head i{
transform:rotate(180deg);
}


/* MOBILE RESPONSIVE HEADER */

@media (max-width: 992px){

.top-header{
display:none;
}

.bottom-navbar{
display:none;
}

.mobile-header{
display:flex;
}

}
/*************************** Footer css  *****************************************************************************************/


/* FOOTER BACKGROUND */
.footer-bg {
    background: linear-gradient(
        to bottom,
        var(--clr-primary-dark) 0%,
        #3d2033 40%,
        #401e33 100%
    );
    padding: 60px 0 20px;
    color: var(--text-light);
}

/* GRID LAYOUT */
.footer-grid {
    display: grid;
    grid-template-columns: 0.9fr 0.9fr 1.35fr 1.2fr;
    gap: 44px;
}

/* TITLES */
.footer-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    margin-bottom: 12px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--clr-accent);
    position: absolute;
    left: 0;
    bottom: -6px;
}

/* TEXT */
.footer-text {
    font-size: var(--fs-body-sm);
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-gallery-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

/* LISTS */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
	font-size: var(--fs-body-sm);
	color: var(--text-light);
	opacity: 0.9;
	text-decoration: none;
	transition: 0.3s;
	display: flex;
}

.footer-col i {
    color: var(--clr-accent);
}

.footer-contact-list li a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    line-height: 1.5;
}

.footer-address-text {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 2px;
}

.footer-address-name {
    text-transform: uppercase;
}

.footer-contact-list li a i,
.footer-gallery-link i {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    border-radius: 50%;
    color: var(--text-light);
    background: rgba(253, 143, 143, 0.22);
    box-shadow: inset 0 0 0 1px rgba(253, 143, 143, 0.35);
    font-size: 14px;
}

.footer-contact-list li a span,
.footer-gallery-text span,
.footer-gallery-link span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.footer-text i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-top: 0;
    margin-right: 0;
    border-radius: 50%;
    color: var(--text-light);
    background: rgba(253, 143, 143, 0.22);
    box-shadow: inset 0 0 0 1px rgba(253, 143, 143, 0.35);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--clr-accent);
    transform: translateX(4px);
}

/* GALLERY */
.footer-gallery {
    display: grid;
    grid-template-columns: repeat(2, 76px);
    gap: 12px;
    margin-top: 14px;
}

.footer-gallery a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.footer-gallery img {
    width: 100%;
    height: 64px;
    object-fit: cover;
    transition: transform .4s ease, box-shadow .4s ease;
}

/* HOVER EFFECT ON IMAGES */
.footer-gallery img:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.footer-gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 9px 14px 9px 10px;
    border-radius: 999px;
    color: var(--text-light);
    font-size: var(--fs-body-sm);
    opacity: 0.9;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    transition: 0.3s;
}

.footer-gallery-link:hover {
    color: var(--clr-accent);
    transform: translateY(-2px);
    background: rgba(253, 143, 143, 0.12);
}

/* BOTTOM COPYRIGHT */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: var(--fs-body-sm);
    opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact-list li a,
    .footer-gallery-text {
        text-align: left;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul li a:hover {
        transform: translateY(-2px);
    }

    .footer-gallery {
  justify-content: center;
}
}



/* GLOBAL BREADCRUMB BAR */
.breadcrumb-bar {
    width: 100%;
    background: #f8f8f8; /* soft grey like your example */
    padding: 18px 0;
    border-bottom: 1px solid var(--clr-bg-border);
}

/* Wrapper (using your 1200px layout class) */
.breadcrumb-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Title */
.breadcrumb-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: var(--fs-h3);
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: 1px;
}

/* Right Breadcrumb Links */
.breadcrumb-links {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: var(--fs-body-md);
}

.breadcrumb-links a {
    text-decoration: none;
    color: var(--clr-primary-soft);
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-links a:hover {
    color: var(--clr-primary);
}

.breadcrumb-links span {
    color: var(--text-muted);
}

.breadcrumb-links .current {
    color: var(--clr-accent-dark);
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .breadcrumb-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}





/* -------------------------------------------------------------global donation cta */

.donation-hero {
    position: relative;
    width: 100%;
    padding: 150px 0;
    overflow: hidden;
    background-image: url('../Images/home/icon-3.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.donation-hero::before {
    content: "DONATION";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: clamp(4.5rem, 15vw, 13rem);
    font-weight: 700;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 240, 227, 0.2);
    text-stroke: 1px rgba(255, 240, 227, 0.2);
    letter-spacing: 0;
    white-space: nowrap;
    pointer-events: none;
}

.donation-hero::after {
    content: "";
    position: absolute;
    inset: 18%;
    z-index: 2;
    background:
        radial-gradient(circle at 30% 30%, rgba(253, 143, 143, 0.34), transparent 32%),
        radial-gradient(circle at 72% 68%, rgba(255, 231, 213, 0.18), transparent 34%);
    filter: blur(2px);
    opacity: 0.8;
    pointer-events: none;
}

.donation-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(74, 38, 62, 0.88);
    z-index: 1;
}

.hero-shape-1 {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    border: 2px dashed var(--clr-accent-soft);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 2;
}

.hero-shape-2 {
    position: absolute;
    bottom: -100px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--clr-accent) 0%, transparent 70%);
    opacity: 0.15;
    z-index: 2;
    border-radius: 50%;
}

.donation-hero-content {
    position: relative;
    z-index: 4;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--space-4);
}

.donation-hero-content .subheading {
    display: inline-block;
    font-size: var(--fs-label);
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-body);
    letter-spacing: 3px;
    color: var(--text-dark);
    background-color: var(--clr-accent);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-5);
}

.donation-hero-content h2 {
    display: grid;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--space-4);
    line-height: 1.05;
}

.donation-main-word {
    display: block;
    font-size: clamp(4rem, 12vw, 8.5rem);
    line-height: 0.9;
    color: transparent;
    background: linear-gradient(180deg, #fff7ef 0%, var(--clr-accent-soft) 45%, var(--clr-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.donation-title-line {
    display: block;
    font-size: clamp(1.45rem, 4vw, 3.1rem);
    color: #ffffff;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.donation-hero-content p {
    font-size: var(--fs-body-lg);
    color: var(--clr-bg-soft);
    margin-bottom: var(--space-7);
    line-height: 1.8;
}

/* CENTER BUTTON */
.center-btn {
    display: flex;
    justify-content: center;
}

/* REMOVE DEFAULT FOCUS + ADD SOFT GLOW */
.donation-row input:focus,
.donation-email:focus,
.amount-input:focus,
.donation-form input:focus {
    outline: none !important;
    box-shadow: 0 0 8px rgba(253, 143, 143, 0.4) !important;
    border-color: var(--clr-accent) !important;
}



/* RESPONSIVE FIX */
@media(max-width: 768px) {
    .donation-hero {
        padding: 95px 0;
        background-attachment: scroll;
    }

    .donation-hero::before {
        font-size: clamp(3.2rem, 19vw, 7rem);
        top: 46%;
    }

    .donation-hero-content .subheading {
        letter-spacing: 2px;
    }

    .donation-main-word {
        font-size: clamp(3.2rem, 18vw, 5.4rem);
    }
}




/* globle button */
   /* <a href="#" class="btn-pill btn-accent-theme"></a>
   <a href="#" class="btn-pill btn-primary-theme"></a> */

/* =========================================
   GRAND TEMPLE DOOR PRELOADER
   Applies instantly across all pages
========================================= */

/* Left Door */
html::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 50vw;
    height: 100vh;
    background: var(--clr-primary-dark, #3a1d30);
    z-index: 999997;
    box-shadow: inset -10px 0 30px rgba(0,0,0,0.2); /* depth */
    animation: door-slide-left 1.2s cubic-bezier(0.77, 0, 0.175, 1) 1.5s forwards;
    pointer-events: none;
}

/* Right Door */
html::after {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100vh;
    background: var(--clr-primary-dark, #3a1d30);
    z-index: 999997;
    box-shadow: inset 10px 0 30px rgba(0,0,0,0.2);
    animation: door-slide-right 1.2s cubic-bezier(0.77, 0, 0.175, 1) 1.5s forwards;
    pointer-events: none;
}

/* The White Logo */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 160px;
    margin-top: -80px;
    margin-left: -150px;
    background-image: url('../Images/logo/Shree-satayanarayan_Guj.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 999999;
    animation: logo-entrance 1.5s ease forwards;
    pointer-events: none;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.6));
}

/* Creative Loader Ring */
body::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    margin-top: -110px;
    margin-left: -110px;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-top: 3px solid rgba(255, 215, 0, 0.8); /* Gold */
    border-bottom: 3px solid rgba(255, 215, 0, 0.8); /* Gold */
    border-radius: 50%;
    z-index: 999998;
    animation: creative-spin 2s linear infinite, logo-entrance 1.5s ease forwards;
    pointer-events: none;
}

@keyframes creative-spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes door-slide-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); visibility: hidden; }
}

@keyframes door-slide-right {
    0% { transform: translateX(0); }
    100% { transform: translateX(100%); visibility: hidden; }
}

@keyframes logo-entrance {
    0% { opacity: 0; transform: scale(0.85); }
    30% { opacity: 1; transform: scale(1); }
    80% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.1); visibility: hidden; }
}
