*{margin:0;padding:0;box-sizing:border-box;font-family:Arial}body{background:#111;color:#fff}
header{position:fixed;top:0;left:0;width:100%;background:#000c;padding:15px 20px;z-index:9}
.nav{display:flex;justify-content:space-between;align-items:center}.logo{color:#d4af37;font-size:28px;font-weight:bold}
.links{display:flex;gap:20px}.links a{color:#fff;text-decoration:none}.menu{display:none;font-size:28px;cursor:pointer}
.hero{height:100vh;position:relative}.slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transition:1s}.active{opacity:1}.ov{position:absolute;inset:0;background:#0008}
.txt{position:absolute;left:8%;top:50%;transform:translateY(-50%);z-index:2;max-width:500px}.btn{display:inline-block;background:#d4af37;color:#111;padding:10px 18px;border-radius:25px;text-decoration:none;margin-top:20px}
footer{text-align:center;padding:40px;background:#1b1b1b}
@media(max-width:768px){.menu{display:block}.links{display:none;position:absolute;top:65px;left:0;width:100%;background:#111;flex-direction:column;padding:20px}.links.show{display:flex}}

/* About */

.about{
    padding:100px 0;
    background:#111;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

.about-image{
    flex:1;
    min-width:300px;
}

.about-image img{
    width:100%;
    display:block;
    border-radius:15px;
}

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

.section-subtitle{
    color:#d4af37;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.about-content h2{
    font-size:42px;
    margin:15px 0 20px;
}

.about-content h2 span{
    color:#d4af37;
}

.about-content p{
    color:#ccc;
    line-height:1.8;
    margin-bottom:20px;
}

.about-btn{
    display:inline-block;
    background:#d4af37;
    color:#111;
    text-decoration:none;
    padding:14px 30px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.about-btn:hover{
    background:#fff;
}

/* Responsive */

@media(max-width:768px){

.about{
    padding:70px 0;
}

.about-container{
    flex-direction:column;
}

.about-content{
    text-align:center;
}

.about-content h2{
    font-size:32px;
}

}

.gallery{
    padding:100px 0;
    background:#0b0b0b;
    overflow:hidden;
}

.gallery-title{
    text-align:center;
    margin-bottom:50px;
}

.gallery-title span{
    color:#d4af37;
    letter-spacing:2px;
    text-transform:uppercase;
}

.gallery-title h2{
    font-size:50px;
    margin:15px 0;
}

.gallery-title h2 span{
    color:#d4af37;
}

.gallery-title p{
    color:#ccc;
    max-width:650px;
    margin:auto;
    line-height:1.8;
}

.gallery-slider{
    position:relative;
    width:90%;
    margin:auto;
}

.gallery-track{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
}

.gallery-track::-webkit-scrollbar{
    display:none;
}

.gallery-track img{
    width:280px;
    height:420px;
    object-fit:cover;
    border-radius:15px;
    flex:none;
    border:2px solid #d4af37;
    transition:.4s;
}

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

.gallery-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#d4af37;
    color:#111;
    font-size:24px;
    cursor:pointer;
    z-index:5;
}

.gallery-btn:hover{
    background:#fff;
}

.prev{
    left:-25px;
}

.next{
    right:-25px;
}

@media(max-width:768px){

.gallery-title h2{
    font-size:34px;
}

.gallery-track img{
    width:230px;
    height:320px;
}

.gallery-btn{
    display:none;
}

}
.offers{
    padding:100px 8%;
    background:#090909;
}

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

.section-title span{
    color:#d4af37;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    font-size:55px;
    margin:15px 0;
}

.section-title h2 span{
    color:#d4af37;
}

.section-title p{
    color:#bbb;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

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

.drink-card{
    background:#111;
    border:1px solid #d4af37;
    border-radius:15px;
    overflow:hidden;
    position:relative;
    text-align:center;
    transition:.4s;
}

.drink-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(212,175,55,.3);
}

.drink-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    animation:float 4s ease-in-out infinite;
}

.discount{
    position:absolute;
    top:15px;
    right:15px;
    width:80px;
    height:80px;
    background:#d4af37;
    color:#111;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:bold;
    z-index:2;
}

.drink-card h3{
    margin:20px 0 10px;
    font-size:30px;
    color:#d4af37;
}

.drink-card p{
    color:#ccc;
    padding:0 20px;
    line-height:1.7;
}

.price{
    margin:25px 0;
    color:#d4af37;
    font-size:32px;
    font-weight:bold;
}

.price span{
    color:#777;
    text-decoration:line-through;
    font-size:22px;
    margin-left:10px;
}

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-10px);
}

100%{
transform:translateY(0px);
}

}

@media(max-width:768px){

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

.drink-card img{
    height:260px;
}

}

.events{
    padding:100px 8%;
    background:#111;
}

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

.section-title span{
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
}

.section-title h2{
    font-size:50px;
    margin:15px 0;
    color:#fff;
}

.section-title h2 span{
    color:#d4af37;
}

.section-title p{
    color:#bbb;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

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

.event-card{
    background:#1a1a1a;
    border:1px solid rgba(212,175,55,.3);
    border-radius:15px;
    overflow:hidden;
    transition:.4s;
}

.event-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(212,175,55,.25);
}

.event-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.featured{
    grid-column:span 2;
}

.featured img{
    height:320px;
}

.event-content{
    padding:25px;
}

.event-tag{
    position:absolute;
    margin:15px;
    background:#d4af37;
    color:#111;
    padding:8px 15px;
    border-radius:30px;
    font-weight:bold;
}

.event-content h3{
    color:#d4af37;
    margin-bottom:12px;
}

.date{
    color:#f2c94c;
    margin-bottom:15px;
    font-weight:600;
}

.event-content p{
    color:#ccc;
    line-height:1.7;
}

.event-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 28px;
    background:#d4af37;
    color:#111;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.event-btn:hover{
    background:#fff;
}

@media(max-width:768px){

.featured{
    grid-column:span 1;
}

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

.featured img{
    height:240px;
}

}
.footer{
    background:#0b0b0b;
    padding:80px 0 0;
    border-top:1px solid rgba(212,175,55,.3);
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
}

.footer-item h2,
.footer-item h3{
    color:#d4af37;
    margin-bottom:20px;
}

.footer-item p{
    color:#bbb;
    line-height:1.8;
}

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

.footer-item ul li{
    margin-bottom:12px;
}

.footer-item ul li a{
    color:#bbb;
    text-decoration:none;
    transition:.3s;
}

.footer-item ul li a:hover{
    color:#d4af37;
    padding-left:5px;
}

.social{
    margin-top:20px;
}

.social a{
    display:inline-block;
    margin-right:10px;
    padding:10px 18px;
    border:1px solid #d4af37;
    color:#d4af37;
    text-decoration:none;
    border-radius:30px;
    transition:.3s;
}

.social a:hover{
    background:#d4af37;
    color:#111;
}

.footer-bottom{
    margin-top:60px;
    border-top:1px solid rgba(255,255,255,.08);
    padding:20px;
    text-align:center;
}

.footer-bottom p{
    color:#888;
    font-size:15px;
}

@media(max-width:768px){

.footer{
    padding:60px 20px 0;
}

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

.social a{
    margin:5px;
}

}


.contact-info{
    padding:100px 8%;
    background:#111;
}

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

.contact-card{
    background:#1a1a1a;
    padding:40px 30px;
    text-align:center;
    border:1px solid rgba(212,175,55,.3);
    border-radius:15px;
    transition:.4s;
}

.contact-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 15px 35px rgba(212,175,55,.25);
}

.contact-card .icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    background:#d4af37;
    color:#111;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
}

.contact-card h3{
    color:#d4af37;
    margin-bottom:15px;
    font-size:24px;
}

.contact-card p{
    color:#ccc;
    line-height:1.8;
}

@media(max-width:768px){

.contact-info{
    padding:70px 20px;
}

.contact-grid{
    margin-top:40px;
}

}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;

    /* Prevent touch movement */
    overflow: hidden;
    touch-action: none;
}

#preloader img {
    width: 250px;
    max-width: 80%;
    height: auto;
    pointer-events: none;
}


/*================================
      DRINK SECTION
================================*/

.drink-banner{
    position:relative;
    width:100%;
    min-height:650px;

    background-image:url("https://buergerstuebel.com/c3.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;
}


/* Dark overlay */

.drink-bg-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.60);
    z-index:1;
}


/* Content */

.drink-banner-content{
    position:relative;
    z-index:5;

    max-width:750px;
    padding:20px;

    text-align:center;
    color:#fff;
}


.drink-banner-content h1{
    font-size:58px;
    font-weight:700;
    line-height:1.2;

    margin:0 0 20px;
}


.drink-banner-content p{
    font-size:18px;
    line-height:1.8;

    color:#e5e5e5;

    margin:0 auto 35px;
}


/* Button */

.drink-button{
    display:inline-block;

    padding:16px 45px;

    background:#d4af37;
    color:#111;

    border-radius:50px;

    text-decoration:none;
    font-size:16px;
    font-weight:700;

    transition:.4s;
}


.drink-button:hover{
    background:#fff;
    transform:translateY(-5px);
}



/*================================
       DRINK GLASS IMAGES
================================*/


.drink-glass{

    position:absolute;

    width:260px;

    z-index:10;

    opacity:0;

    transition:1.2s ease;

    filter:drop-shadow(0 20px 35px rgba(0,0,0,.5));

    pointer-events:none;
}



/* Left corner */

.left-glass{

    left:-20px;

    bottom:-120px;

    transform:
    translateY(180px)
    rotate(-15deg);
}



/* Right corner */

.right-glass{

    right:-20px;

    bottom:-120px;

    transform:
    translateY(180px)
    rotate(15deg);
}



/* Popup animation */

.drink-banner.active .left-glass,
.drink-banner.active .right-glass{

    opacity:1;

    transform:
    translateY(0)
    rotate(0deg);

}



/*================================
          TABLET
================================*/


@media(max-width:992px){

    .drink-banner{
        min-height:600px;
    }


    .drink-banner-content h1{
        font-size:45px;
    }


    .drink-glass{

        width:180px;

    }


}



/*================================
          MOBILE
================================*/


@media(max-width:768px){


    .drink-banner{

        min-height:520px;

        overflow:hidden;

    }


    .drink-banner-content{

        padding:20px;

    }


    .drink-banner-content h1{

        font-size:32px;

    }


    .drink-banner-content p{

        font-size:15px;

    }


    .drink-button{

        padding:14px 32px;

    }



    .drink-glass{

        width:120px;

        opacity:1;

    }



    .left-glass{

        left:-10px;

        bottom:-5px;

        transform:rotate(-12deg);

    }



    .right-glass{

        right:-10px;

        bottom:-5px;

        transform:rotate(12deg);

    }


}



/* Small Mobile */

@media(max-width:400px){


    .drink-glass{

        width:95px;

    }


    .drink-banner-content h1{

        font-size:27px;

    }


}

.social{
    display:flex;
    gap:15px;
}

.social a{
    width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#d4af37;
    color:#111;

    font-size:22px;

    text-decoration:none;

    transition:.3s;
}


.social a:hover{
    background:#fff;
    transform:translateY(-5px);
}

/* WhatsApp Floating Button */

.whatsapp-float{

    position:fixed;

    right:25px;
    bottom:25px;

    width:60px;
    height:60px;

    background:#25D366;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:35px;

    text-decoration:none;

    z-index:9999;

    box-shadow:0 5px 20px rgba(0,0,0,.3);

    animation:whatsappPulse 1.8s infinite;

}


.whatsapp-float:hover{

    transform:scale(1.1);

    background:#20bd5a;

}


/* Popup pulse animation */

@keyframes whatsappPulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.7);
    }

    70%{
        box-shadow:0 0 0 20px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}


/* Mobile */

@media(max-width:600px){

    .whatsapp-float{

        width:55px;
        height:55px;

        right:15px;
        bottom:20px;

        font-size:30px;

    }

}
