:root {
  /* Color Palette */
  --color-chocolate: #4A2C2A;
  --color-chocolate-dark: #351f1e;
  --color-chocolate-light: #6d423f;
  --color-cream: #FDFBF7;
  --color-cream-dark: #F2EFE8;
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #1ebd5c;
  --color-cta-orange: #FF6B35;
  --color-cta-orange-hover: #E85B28;
  --color-text-dark: var(--color-chocolate);
  --color-text-light: #ffffff;
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family: var(--font-body);
    background: var(--color-cream);
    color: var(--color-text-dark);
    overflow-x:hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-chocolate);
}

body::before{
    content:'';
    position:fixed;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(232,176,113,0.15) 0%, transparent 70%);
    top:-200px;
    right:-100px;
    z-index:-1;
}

body::after{
    content:'';
    position:fixed;
    width:400px;
    height:400px;
    background:radial-gradient(circle, rgba(74,44,42,0.05) 0%, transparent 70%);
    bottom:-200px;
    left:-100px;
    z-index:-1;
}

/* Main Header Container */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Text Logo Standalone */
.main-logo-container {
    display: flex;
    align-items: center;
}

.text-logo {
    text-decoration: none;
    font-family: var(--font-heading);
    color: var(--color-chocolate);
    line-height: 0.95;
    display: inline-block;
    transition: transform 0.3s ease;
}

.text-logo:hover {
    transform: scale(1.05);
}

.logo-the {
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 500;
}

.logo-cocoa {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Centered Pill Navbar */
.pill-navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    height: 60px;
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 44, 42, 0.1);
    border-radius: 50px;
    box-shadow: 0 4px 6px -1px rgba(74, 44, 42, 0.1);
}

.nav-links {
    display: flex;
    gap: 40px;
    height: 100%;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-chocolate);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--color-cta-orange);
    transition: 0.3s ease;
    border-radius: 3px 3px 0 0;
}

.nav-links a.active, .nav-links a:hover {
    color: var(--color-cta-orange);
}

.nav-links a.active::after, .nav-links a:hover::after {
    width: 100%;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:140px 8% 80px;
    gap:40px;
    overflow:hidden;
}

.hero-content{
    flex:1;
    min-width:300px;
}

.tag{
    display:inline-block;
    padding:10px 18px;
    background:rgba(74, 44, 42, 0.05);
    border-radius:50px;
    color:var(--color-chocolate-light);
    margin-bottom:25px;
    border:1px solid rgba(74, 44, 42, 0.1);
    font-weight: 500;
}

.hero h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero h1 span{
    color:var(--color-cta-orange);
}

.hero p{
    color:var(--color-chocolate-light);
    font-size:20px;
    line-height:1.7;
    max-width:600px;
    margin-bottom:35px;
}

.buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
    display:inline-block;
}

.btn-primary{
    background:var(--color-cta-orange);
    color:var(--color-text-light);
}

.btn-primary:hover{
    background:var(--color-cta-orange-hover);
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(255, 107, 53, 0.3);
}

.btn-secondary{
    border:2px solid var(--color-cta-orange);
    color:var(--color-cta-orange);
}

.btn-secondary:hover{
    background:var(--color-cta-orange);
    color:var(--color-text-light);
}

.hero-image{
    flex:1;
    max-width:50%;
    text-align:center;
    position:relative;
}

.hero-image img{
    width:100%;
    max-width:500px;
    animation:float 4s ease-in-out infinite;
    filter:drop-shadow(0 20px 40px rgba(0,0,0,.6));
}

@keyframes float{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-20px)}
}

section{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:48px;
    margin-bottom:12px;
    color:var(--color-chocolate);
}

.section-title p{
    color:var(--color-chocolate-light);
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.card{
    background:#ffffff;
    border:1px solid rgba(74, 44, 42, 0.1);
    border-radius:28px;
    padding:30px;
    transition:.4s;
    box-shadow: var(--shadow-sm);
}

.card:hover{
    transform:translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card h3{
    margin-bottom:14px;
    color:var(--color-chocolate);

    font-size:24px;
}

.menu-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:20px;
    margin-bottom:20px;
}

.price{
    margin-top:18px;
    font-size:26px;
    color:var(--color-cta-orange);
    font-weight:700;
}

.offer{
    background:var(--color-cream-dark);
    border:1px solid rgba(74, 44, 42, 0.1);
    border-radius:35px;
    text-align:center;
    padding:80px 30px;
    position:relative;
    overflow:hidden;
}

.offer h2{
    font-size:52px;
    margin-bottom:20px;
    color:var(--color-chocolate);
}

.offer p{
    color:var(--color-chocolate-dark);
    margin-bottom:30px;
    font-size:18px;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:22px;
    transition:.4s;
}

.gallery img:hover{
    transform:scale(1.05);
}

.testimonial{
    text-align:center;
}

.stars{
    color:#ffd700;
    margin-bottom:18px;
    font-size:22px;
}

.faq-item{
    background:#ffffff;
    border:1px solid rgba(74, 44, 42, 0.1);
    border-radius:20px;
    padding:24px;
    margin-bottom:20px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3{
    color:var(--color-chocolate);
    margin-bottom:12px;
}

.instagram{
    text-align:center;
    background:#ffffff;
    border:1px solid rgba(74, 44, 42, 0.1);
    border-radius:30px;
    padding:60px 30px;
    box-shadow: var(--shadow-sm);
}

.instagram h2{
    font-size:46px;
    margin-bottom:15px;
    color:var(--color-chocolate);
}

.instagram p{
    color:var(--color-chocolate-light);
    margin-bottom:25px;
}

.instagram a{
    color:var(--color-chocolate-dark);
    font-size:28px;
    text-decoration:none;
    font-weight:700;
}

.whatsapp{
    text-align:center;
}

.whatsapp a{
    display:inline-block;
    margin-top:20px;
    background:#25d366;
    color:#fff;
    padding:18px 38px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.whatsapp a:hover{
    transform:scale(1.05);
}

.location-section{
    padding-top:40px;
}

.location-card{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:30px;
    align-items:center;
    background:#ffffff;
    border:1px solid rgba(74, 44, 42, 0.1);
    border-radius:30px;
    padding:30px;
    box-shadow: var(--shadow-md);
    overflow:hidden;
}

.location-info h3{
    font-size:38px;
    margin-bottom:20px;
    color:var(--color-chocolate);
}

.location-address{
    font-size:18px;
    line-height:1.8;
    color:var(--color-chocolate-dark);
    margin-bottom:18px;
}

.location-time{
    color:var(--color-chocolate-light);
    margin-bottom:25px;
}

.map-wrapper{
    width:100%;
    height:100%;
    min-height:350px;
    border-radius:24px;
    overflow:hidden;
}

.map-wrapper iframe{
    width:100%;
    height:100%;
    border:0;
    filter: none;
}

@media(max-width:768px){

    .location-card{
        grid-template-columns:1fr;
    }

    .location-info{
        text-align:center;
    }

    .location-info h3{
        font-size:30px;
    }

    .map-wrapper{
        min-height:300px;
    }

}

footer{
    padding:50px 8%;
    border-top:1px solid rgba(74, 44, 42, 0.1);
    text-align:center;
    color:var(--color-chocolate-light);
    background: var(--color-cream-dark);
}

footer img{
    width: 300px;
}

footer a{
    color: var(--color-chocolate);
}

.floating-whatsapp{
    position:fixed;
    bottom:22px;
    right:22px;
    width:70px;
    height:70px;
    background:#25d366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    text-decoration:none;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,.4);
}

.premium-gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:50px;
}

.gallery-card{
    background:#ffffff;
    border-radius:28px;
    overflow:hidden;
    border:1px solid rgba(74, 44, 42, 0.1);
    transition:.4s;
    box-shadow: var(--shadow-sm);
}

.gallery-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.45);
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.gallery-card.large{
    grid-column:span 2;
    grid-row:span 2;
}

.gallery-card.wide{
    grid-column:span 2;
}

@media(max-width:992px){

    .premium-gallery{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-card.large,
    .gallery-card.wide{
        grid-column:span 2;
    }

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero-image{
        max-width:100%;
        width:100%;
    }
}

@media(max-width:600px){

    .premium-gallery{
        grid-template-columns:1fr;
    }

    .gallery-card.large,
    .gallery-card.wide{
        grid-column:span 1;
    }

}

@media(max-width:768px){

    .hero{
        text-align:center;
    }

    .hero h1{
        font-size:52px;
    }

    .buttons{
        justify-content:center;
    }

    .pill-navbar{
        display:none;
    }
    
    .main-header {
        padding: 20px 6%;
        justify-content: center;
    }

    .section-title h2{
        font-size:38px;
    }

    .offer h2{
        font-size:38px;
    }

}
.premium-menu{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(420px,1fr));
    gap:28px;
    margin-top:50px;
}

/* REMOVE old left/right flex styles */
.menu-left,
.menu-right{
    display:contents;
}

.menu-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:28px;
    border-radius:26px;
    background:#ffffff;
    border:1px solid rgba(74, 44, 42, 0.1);
    transition:.4s ease;
    position:relative;
    overflow:hidden;
    box-shadow: var(--shadow-sm);
}

.menu-item::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:linear-gradient(180deg,#d8a26d,#8d562f);
}

.menu-item:hover{
    transform:translateY(-6px);
    box-shadow: var(--shadow-md);
}

.menu-info{
    flex:1;
}

.menu-info h3{
    font-size:30px;
    margin-bottom:10px;
    color:var(--color-chocolate);
    font-weight:800;
    letter-spacing:1px;
    line-height:1.1;
    text-transform:uppercase;
}

.menu-info p{
    color:var(--color-chocolate-dark);
    line-height:1.7;
    font-size:16px;
}

.menu-price{
    min-width:92px;
    height:92px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(135deg,#c68b59,#8d562f);
    color:#fff;
    font-size:30px;
    font-weight:800;
    box-shadow:0 10px 25px rgba(198,139,89,.35);
    flex-shrink:0;
}

.special-item{
    background:var(--color-cream-dark);
    border:1px solid rgba(255, 107, 53, 0.35);
}

.special-item::before{
    background:linear-gradient(180deg, var(--color-cta-orange), var(--color-cta-orange-hover));
}

.special-price{
    background:linear-gradient(135deg, var(--color-cta-orange), var(--color-cta-orange-hover));
    color:#fff;
}

.cold-coffee-item{
    background:#ffffff;
}

.cold-coffee-item::before{
    background:linear-gradient(180deg,#ffe0b2,#b56a2d);
}

@media(max-width:768px){

    .premium-menu{
        grid-template-columns:1fr;
    }

    .menu-item{
        flex-direction:column;
        align-items:flex-start;
        padding:24px;
    }

    .menu-price{
        width:80px;
        height:80px;
        font-size:24px;
    }

    .menu-info h3{
        font-size:24px;
    }

}
.hero-bottle-wrapper{
    position:relative;
    width:100%;
    max-width:500px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:auto;
    aspect-ratio:1/1;
}

.hero-bottle{
    width:100%;
    max-width:320px;
    z-index:5;
    position:relative;
    animation:floatBottle 4s ease-in-out infinite;
    filter:
            drop-shadow(0 30px 50px rgba(0,0,0,.6))
            drop-shadow(0 0 40px rgba(198,139,89,.15));
}

@keyframes floatBottle{
    0%,100%{
        transform:translateY(0px) rotate(-2deg);
    }

    50%{
        transform:translateY(-18px) rotate(2deg);
    }
}

.glow-effect{
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:radial-gradient(circle,
    rgba(198,139,89,.35) 0%,
    rgba(198,139,89,.12) 35%,
    transparent 75%);
    z-index:1;
    filter:blur(10px);
}

.floating-ring{
    position:absolute;
    border:1px solid rgba(198,139,89,.25);
    border-radius:50%;
    animation:rotateRing 15s linear infinite;
}

.ring-1{
    width:420px;
    height:420px;
}

.ring-2{
    width:520px;
    height:520px;
    animation-direction:reverse;
    opacity:.5;
}

@keyframes rotateRing{
    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

.choco-splash{
    position:absolute;
    width:140px;
    height:140px;
    background:radial-gradient(circle,
    #4a2416 0%,
    #2b140d 70%,
    transparent 100%);
    filter:blur(12px);
    opacity:.7;
    z-index:2;
}

.splash-left{
    left:20px;
    top:120px;
    transform:rotate(-25deg);
}

.splash-right{
    right:20px;
    bottom:120px;
    transform:rotate(25deg);
}

.hero-bottle-wrapper::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:
            radial-gradient(circle at 30% 30%,
            rgba(255,255,255,.05),
            transparent 40%);
    z-index:0;
}

@media(max-width:768px){

    .hero-bottle{
        max-width:280px;
    }

    .ring-1{
        width:320px;
        height:320px;
    }

    .ring-2{
        width:400px;
        height:400px;
    }

    .hero-bottle-wrapper{
        min-height:450px;
    }

}

