/* ======================================================
   MadCRUST - Coming Soon
   Part 1
   ====================================================== */

/* ---------- Google Font Fallback ---------- */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ---------- Theme Colors ---------- */

:root{

    --gold:#D9A441;
    --gold-light:#F6C66A;

    --brown:#3B241A;
    --brown-dark:#241512;

    --cream:#FBF7EE;
    --white:#ffffff;

    --glass:rgba(255,255,255,.15);

    --shadow:0 20px 60px rgba(0,0,0,.25);

    --transition:.35s ease;
}

/* ---------- Body ---------- */

body{

    font-family:'Poppins',sans-serif;

    background:
    linear-gradient(rgba(24,14,10,.55),
    rgba(24,14,10,.55)),
    url("images/hero.jpg") center center/cover no-repeat;

    color:var(--white);

    min-height:100vh;

    overflow-x:hidden;
    overflow-y:auto;

    position:relative;
}

/* ---------- Soft Zoom Background ---------- */

body::before{

    content:"";

    position:absolute;

    inset:0;

    background:inherit;

    z-index:-2;

    animation:zoomBackground 25s ease-in-out infinite alternate;

}

@keyframes zoomBackground{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}

/* ---------- Dark Overlay ---------- */

.overlay{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top left,
    rgba(255,255,255,.08),
    transparent 40%),

    radial-gradient(circle at bottom right,
    rgba(217,164,65,.18),
    transparent 45%);

    backdrop-filter:blur(2px);

    z-index:-1;

}

/* ---------- Hero ---------- */

.hero{

    width:100%;

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:60px 20px;

}

/* ---------- Glass Card ---------- */

.glass-card{

    width:100%;

    max-width:760px;

    padding:60px;

    margin:50px 0;

    text-align:center;

    border-radius:28px;

    background:rgba(255,255,255,.14);

    border:1px solid rgba(255,255,255,.25);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    box-shadow:var(--shadow);

    animation:fadeUp 1s ease;

}

/* ---------- Card Animation ---------- */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ---------- Logo ---------- */

.logo{

    width:180px;

    margin:auto;

    display:block;

    margin-bottom:25px;

    filter:drop-shadow(0 10px 20px rgba(0,0,0,.35));

    animation:floatLogo 4s ease-in-out infinite;

}

@keyframes floatLogo{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0);

    }

}

/* ---------- Tagline ---------- */

.tagline{

    display:inline-block;

    color:var(--gold-light);

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:.9rem;

    margin-bottom:18px;

}

/* ---------- Main Heading ---------- */

h1{

    font-family:'Playfair Display',serif;

    font-size:4rem;

    line-height:1.15;

    color:#fff;

    margin-bottom:25px;

    text-shadow:

    0 5px 18px rgba(0,0,0,.35);

}

/* ---------- Description ---------- */

.description{

    max-width:620px;

    margin:auto;

    line-height:1.9;

    font-size:1.08rem;

    color:rgba(255,255,255,.92);

}

/* ---------- Coming Soon Badge ---------- */

.coming-soon{

    margin:40px auto;

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:15px 30px;

    border-radius:50px;

    background:rgba(217,164,65,.18);

    border:1px solid rgba(217,164,65,.45);

    color:var(--gold-light);

    font-weight:600;

    backdrop-filter:blur(10px);

}

.coming-soon i{

    font-size:1.2rem;

}

/* ---------- Divider ---------- */

.divider{

    width:120px;

    height:2px;

    background:linear-gradient(
    to right,
    transparent,
    var(--gold),
    transparent);

    margin:45px auto;

}

/* ---------- Footer ---------- */

footer{

    margin-top:35px;

}

footer p{

    color:rgba(255,255,255,.82);

    margin-bottom:10px;

    font-size:.95rem;

}

footer .copyright{

    color:rgba(255,255,255,.55);

    font-size:.85rem;

}
/* ======================================================
   MadCRUST - Coming Soon
   Part 2
   Buttons • Socials • Floating Cookies • Animations
   ====================================================== */

/* ---------- Buttons Container ---------- */

.buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:20px;
}

/* ---------- Common Button ---------- */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    min-width:190px;
    padding:16px 28px;

    border-radius:50px;

    text-decoration:none;

    font-size:1rem;
    font-weight:600;

    transition:all .35s ease;

    cursor:pointer;

    position:relative;

    overflow:hidden;
}

/* Button shine animation */

.btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:70%;
    height:100%;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.55),
    transparent);

    transform:skewX(-25deg);

    transition:.7s;

}

.btn:hover::before{

    left:140%;

}

/* ---------- Primary Button ---------- */

.primary{

    background:linear-gradient(
    135deg,
    var(--gold),
    var(--gold-light));

    color:var(--brown-dark);

    box-shadow:
    0 12px 30px rgba(217,164,65,.35);

}

.primary:hover{

    transform:translateY(-5px);

    box-shadow:
    0 18px 40px rgba(217,164,65,.55);

}

/* ---------- Secondary Button ---------- */

.secondary{

    background:rgba(255,255,255,.10);

    color:#fff;

    border:1px solid rgba(255,255,255,.25);

    backdrop-filter:blur(12px);

}

.secondary:hover{

    background:rgba(255,255,255,.18);

    transform:translateY(-5px);

    box-shadow:
    0 15px 35px rgba(255,255,255,.15);

}

/* ---------- Icons ---------- */

.btn i{

    font-size:1.2rem;

}

/* ======================================================
   SOCIAL ICONS
   ====================================================== */

.socials{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

}

/* ---------- Individual Icon ---------- */

.socials a{

    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    color:#fff;

    text-decoration:none;

    background:rgba(255,255,255,.10);

    border:1px solid rgba(255,255,255,.20);

    backdrop-filter:blur(12px);

    transition:all .35s ease;

}

.socials a:hover{

    background:var(--gold);

    color:var(--brown-dark);

    transform:
    translateY(-6px)
    scale(1.08);

    box-shadow:
    0 12px 30px rgba(217,164,65,.45);

}

.socials i{

    font-size:1.3rem;

}

/* ======================================================
   FLOATING COOKIE DECORATIONS
   ====================================================== */

.cookie{

    position:absolute;

    width:90px;
    height:90px;

    border-radius:50%;

    opacity:.12;

    pointer-events:none;

    z-index:-1;

    background:
    radial-gradient(circle at center,
    #d9a441 0%,
    #b9852b 100%);

    box-shadow:
    inset 0 0 20px rgba(255,255,255,.25);

}

/* Chocolate chips */

.cookie::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    radial-gradient(circle,#5b3827 6%,transparent 7%),
    radial-gradient(circle,#5b3827 6%,transparent 7%),
    radial-gradient(circle,#5b3827 6%,transparent 7%),
    radial-gradient(circle,#5b3827 6%,transparent 7%),
    radial-gradient(circle,#5b3827 6%,transparent 7%),
    radial-gradient(circle,#5b3827 6%,transparent 7%);

    background-size:100% 100%;

    background-position:
    18px 22px,
    52px 18px,
    32px 50px,
    64px 56px,
    20px 66px,
    48px 72px;

    background-repeat:no-repeat;

}

/* Cookie Positions */

.cookie1{

    top:8%;
    left:7%;

    animation:floatOne 10s ease-in-out infinite;

}

.cookie2{

    right:8%;
    top:18%;

    animation:floatTwo 12s ease-in-out infinite;

}

.cookie3{

    bottom:10%;
    left:10%;

    animation:floatThree 11s ease-in-out infinite;

}

.cookie4{

    bottom:8%;
    right:8%;

    animation:floatFour 13s ease-in-out infinite;

}

/* ---------- Floating Animations ---------- */

@keyframes floatOne{

    0%{transform:translateY(0) rotate(0deg);}
    50%{transform:translateY(-25px) rotate(10deg);}
    100%{transform:translateY(0) rotate(0deg);}

}

@keyframes floatTwo{

    0%{transform:translateX(0);}
    50%{transform:translateX(-30px);}
    100%{transform:translateX(0);}

}

@keyframes floatThree{

    0%{transform:translateY(0);}
    50%{transform:translateY(20px);}
    100%{transform:translateY(0);}

}

@keyframes floatFour{

    0%{transform:rotate(0deg);}
    50%{transform:rotate(12deg);}
    100%{transform:rotate(0deg);}

}

/* ======================================================
   SOFT GLOW ANIMATION
   ====================================================== */

.glass-card{

    animation:
    fadeUp 1s ease,
    glowCard 6s ease-in-out infinite;

}

@keyframes glowCard{

    0%{

        box-shadow:
        0 20px 60px rgba(0,0,0,.28);

    }

    50%{

        box-shadow:
        0 25px 80px rgba(217,164,65,.28);

    }

    100%{

        box-shadow:
        0 20px 60px rgba(0,0,0,.28);

    }

}

/* ======================================================
   BUTTON PULSE
   ====================================================== */

.primary{

    animation:pulse 3s infinite;

}

@keyframes pulse{

    0%{

        box-shadow:
        0 0 0 rgba(217,164,65,.45);

    }

    70%{

        box-shadow:
        0 0 25px rgba(217,164,65,.15);

    }

    100%{

        box-shadow:
        0 0 0 rgba(217,164,65,0);

    }

}
/* ======================================================
   MadCRUST - Coming Soon
   Part 3
   Responsive Design & Final Polish
   ====================================================== */

/* ---------- Smooth Scrolling ---------- */

html{
    scroll-behavior:smooth;
}

/* ---------- Text Selection ---------- */

::selection{
    background:var(--gold);
    color:var(--brown-dark);
}

/* ---------- Better Image Rendering ---------- */

img{
    max-width:100%;
    display:block;
}

/* ---------- Remove Default Link Highlight ---------- */

a{
    -webkit-tap-highlight-color:transparent;
}

/* ======================================================
   LARGE DESKTOP (1400px+)
   ====================================================== */

@media (min-width:1400px){

    .glass-card{
        max-width:850px;
        padding:70px;
    }

    h1{
        font-size:4.6rem;
    }

    .description{
        font-size:1.15rem;
        max-width:680px;
    }

    .logo{
        width:210px;
    }

}

/* ======================================================
   LAPTOP
   ====================================================== */

@media (max-width:1200px){

    .glass-card{
        max-width:700px;
        padding:55px;
    }

    h1{
        font-size:3.5rem;
    }

}

/* ======================================================
   TABLET
   ====================================================== */

@media (max-width:992px){

    body{
        overflow-y:auto;
    }

    .hero{
        padding:35px 20px;
    }

    .glass-card{

        padding:45px 35px;

    }

    h1{

        font-size:3rem;

    }

    .description{

        font-size:1rem;

        line-height:1.8;

    }

    .logo{

        width:160px;

    }

    .cookie{

        width:70px;
        height:70px;

        opacity:.08;

    }

}

/* ======================================================
   MOBILE
   ====================================================== */

@media (max-width:768px){

    body{

        overflow-y:auto;

    }

    .hero{

        padding:25px 15px;

    }

    .glass-card{

        padding:35px 25px;

        border-radius:22px;

    }

    h1{

        font-size:2.3rem;

        line-height:1.25;

    }

    .tagline{

        font-size:.8rem;

        letter-spacing:2px;

    }

    .description{

        font-size:.95rem;

    }

    .coming-soon{

        padding:14px 22px;

        font-size:.9rem;

    }

    .buttons{

        flex-direction:column;

        gap:15px;

    }

    .btn{

        width:100%;

        max-width:320px;

    }

    .socials{

        gap:15px;

    }

    .socials a{

        width:50px;
        height:50px;

    }

    .cookie{

        width:55px;
        height:55px;

        opacity:.06;

    }

}

/* ======================================================
   SMALL PHONES
   ====================================================== */

@media (max-width:480px){

    .glass-card{

        padding:30px 20px;

    }

    .logo{

        width:130px;

    }

    h1{

        font-size:1.9rem;

    }

    .description{

        font-size:.92rem;

        line-height:1.7;

    }

    .coming-soon{

        width:100%;

        justify-content:center;

        padding:14px 18px;

    }

    footer p{

        font-size:.82rem;

    }

    .socials{

        flex-wrap:wrap;

    }

}

/* ======================================================
   EXTRA SMALL DEVICES
   ====================================================== */

@media (max-width:360px){

    h1{

        font-size:1.6rem;

    }

    .btn{

        font-size:.9rem;

        padding:14px 20px;

    }

}

/* ======================================================
   REDUCE ANIMATIONS
   ====================================================== */

@media (prefers-reduced-motion:reduce){

    *,
    *::before,
    *::after{

        animation:none !important;

        transition:none !important;

        scroll-behavior:auto !important;

    }

}

/* ======================================================
   INPUT FOCUS (Future Proof)
   ====================================================== */

button:focus,
a:focus{

    outline:2px solid var(--gold);

    outline-offset:4px;

}

/* ======================================================
   FINAL GLASS ENHANCEMENT
   ====================================================== */

.glass-card:hover{

    transform:translateY(-3px);

    transition:.4s ease;

}

/* ======================================================
   FOOTER SPACING
   ====================================================== */

footer{

    padding-top:10px;

}

footer p{

    letter-spacing:.3px;

}
/* ===================================
   Countdown
=================================== */

.countdown-section{

    margin:45px 0;

}

.countdown-title{

    color:var(--gold-light);

    font-weight:600;

    margin-bottom:20px;

    font-size:1rem;

    letter-spacing:1px;

}

#countdown{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.time-box{

    width:110px;

    height:110px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    border-radius:20px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.18);

    transition:.3s;

}

.time-box:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 35px rgba(217,164,65,.25);

}

.time-box span{

    font-size:2.3rem;

    font-weight:700;

    color:var(--gold-light);

    font-family:'Playfair Display',serif;

}

.time-box small{

    margin-top:6px;

    text-transform:uppercase;

    font-size:.78rem;

    letter-spacing:2px;

    color:white;

}

/* Mobile */

@media(max-width:768px){

    .time-box{

        width:80px;

        height:80px;

    }

    .time-box span{

        font-size:1.6rem;

    }

}/* ===================================
   Countdown
=================================== */

.countdown-section{

    margin:45px 0;

}

.countdown-title{

    color:var(--gold-light);

    font-weight:600;

    margin-bottom:20px;

    font-size:1rem;

    letter-spacing:1px;

}

#countdown{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.time-box{

    width:110px;

    height:110px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    border-radius:20px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.18);

    transition:.3s;

}

.time-box:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 35px rgba(217,164,65,.25);

}

.time-box span{

    font-size:2.3rem;

    font-weight:700;

    color:var(--gold-light);

    font-family:'Playfair Display',serif;

}

.time-box small{

    margin-top:6px;

    text-transform:uppercase;

    font-size:.78rem;

    letter-spacing:2px;

    color:white;

}

/* Mobile */

@media(max-width:768px){

    .time-box{

        width:80px;

        height:80px;

    }

    .time-box span{

        font-size:1.6rem;

    }

}
/* ======================================================
   END OF FILE
   ====================================================== */