*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#1b120d;
    color:#fff;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* SPLASH SCREEN */

#splash-screen{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:linear-gradient(
        135deg,
        #2c1810,
        #4b2e1f
    );
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
    transition:1.5s ease;
}

#splash-screen.hide{
    transform:translateY(-100%);
}

.splash-content{
    text-align:center;
}

.coffee-logo{
    font-size:90px;
    color:#d4a373;
    animation:float 2s infinite ease-in-out;
}

.splash-content h1{
    margin-top:20px;
    font-size:45px;
    letter-spacing:4px;
}

.splash-content p{
    margin-top:10px;
    color:#ddd;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}

/* HEADER */

header{
    position:sticky;
    top:0;
    background:#241710;
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,.08);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    font-size:24px;
    font-weight:700;
    color:#d4a373;
}

.logo i{
    margin-right:8px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:#d4a373;
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.tag{
    color:#d4a373;
    text-transform:uppercase;
    letter-spacing:2px;
}

.hero h1{
    font-size:65px;
    line-height:1.1;
    margin:15px 0;
}

.hero p{
    color:#ccc;
    line-height:1.8;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    background:#d4a373;
    color:#111;
    padding:14px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    border:none;
    cursor:pointer;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

.hero-image{
    display:flex;
    justify-content:center;
}

.coffee-circle{
    width:350px;
    height:350px;
    border-radius:50%;
    background:#2f1d15;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 0 40px rgba(212,163,115,.3);
}

.coffee-circle i{
    font-size:150px;
    color:#d4a373;
}

/* SECTION */

section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#d4a373;
}

.section-title h2{
    margin-top:10px;
    font-size:38px;
}

/* MENU */

.menu-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.menu-card{
    background:#241710;
    padding:25px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:15px;
    transition:.3s;
}

.menu-card:hover{
    transform:translateY(-5px);
}

.menu-card h3{
    margin-bottom:10px;
}

.menu-card p{
    color:#bbb;
}

.menu-card span{
    display:block;
    margin-top:15px;
    color:#d4a373;
    font-weight:bold;
}

/* ABOUT */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-icon{
    text-align:center;
}

.about-icon i{
    font-size:220px;
    color:#d4a373;
}

.about-content span{
    color:#d4a373;
}

.about-content h2{
    margin:10px 0 20px;
    font-size:42px;
}

.about-content p{
    color:#ccc;
    line-height:1.9;
    margin-bottom:25px;
}

/* SERVICE */

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.service-card{
    background:#241710;
    border-radius:15px;
    padding:35px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
}

.service-card i{
    font-size:45px;
    color:#d4a373;
    margin-bottom:15px;
}

.service-card h3{
    margin-bottom:10px;
}

.service-card p{
    color:#bbb;
}

/* REVIEW */

.review-card{
    max-width:700px;
    margin:auto;
    background:#241710;
    border-radius:15px;
    padding:40px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
}

.review-card p{
    color:#ddd;
    font-size:18px;
    line-height:1.8;
}

.review-card h4{
    margin-top:20px;
    color:#d4a373;
}

/* CONTACT */

.contact-form{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    background:#241710;
    border:1px solid rgba(255,255,255,.08);
    padding:15px;
    border-radius:10px;
    color:#fff;
    outline:none;
}

.contact-form textarea{
    resize:none;
}

/* FOOTER */

footer{
    background:#140d09;
    padding:30px 0;
    text-align:center;
}

footer h3{
    color:#d4a373;
    margin-bottom:10px;
}

/* RESPONSIVE */

@media(max-width:900px){

    .hero-grid,
    .about-grid,
    .service-grid,
    .menu-grid{
        grid-template-columns:1fr;
    }

    .hero{
        text-align:center;
    }

    .hero h1{
        font-size:45px;
    }

    nav ul{
        gap:15px;
        font-size:14px;
    }

    .coffee-circle{
        width:260px;
        height:260px;
    }

    .coffee-circle i{
        font-size:100px;
    }

    .about-icon i{
        font-size:140px;
    }
}
.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

nav a.active{
    color:#d4a373;
}