:root{

--primary:#671a38;
--secondary:#942a53;
--accent:#c9487c;
--gold:#d6b16b;

--white:#ffffff;
--light:#f8f2f4;
--dark:#220814;

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Inter',sans-serif;
color:white;
background:#671a38;
overflow-x:hidden;

}

/* PATTERN OVERLAY */

body::before{

content:"";

position:fixed;
inset:0;

background:url("images/pattern.png");
background-size:500px;

opacity:.08;

pointer-events:none;
z-index:-2;

}

/* NAVBAR */

.navbar{

position:fixed;
top:0;
left:0;

width:100%;

padding:24px 8%;

display:flex;
justify-content:space-between;
align-items:center;

z-index:999;

backdrop-filter:blur(16px);

background:
rgba(103,26,56,.55);

border-bottom:
1px solid rgba(255,255,255,.08);

}

.logo{

font-size:1.5rem;
font-weight:800;
letter-spacing:4px;

}

.nav-btn{

text-decoration:none;
color:white;

padding:12px 24px;

border-radius:40px;

background:
rgba(255,255,255,.1);

}

/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    position: relative;
    background: linear-gradient(135deg, rgb(0 0 0 / 36%), rgb(111 19 54 / 94%)), url(images/pattern.png);
    background-size: cover;
    overflow: hidden;
}

.hero-content{

max-width:760px;
position:relative;
z-index:2;

}

.badge{

display:inline-block;

padding:12px 22px;

border-radius:40px;

background:
rgba(255,255,255,.12);

border:
1px solid rgba(255,255,255,.15);

margin-bottom:30px;

}

.hero h1{

font-family:
'Playfair Display',
serif;

font-size:
clamp(4rem,8vw,7rem);

line-height:.92;

margin-bottom:25px;

}

.hero p{

font-size:1.2rem;

max-width:600px;

line-height:1.8;

opacity:.92;

margin-bottom:40px;

}

.hero-meta{

display:flex;
gap:40px;

margin-bottom:40px;

}

.hero-meta div{

display:flex;
flex-direction:column;

}

.hero-meta strong{

font-size:1.2rem;
color:var(--gold);

}

.hero-meta span{

opacity:.8;

}

.hero-buttons{

display:flex;
gap:20px;

}

/* BUTTONS */

.btn-primary{

display:inline-flex;

padding:16px 32px;

border-radius:50px;

text-decoration:none;
font-weight:600;

background:
linear-gradient(
135deg,
#c9487c,
#942a53
);

color:white;

box-shadow:
0 10px 35px rgba(0,0,0,.2);

}

.btn-primary:hover{

transform:translateY(-4px);

}

.btn-secondary{

display:inline-flex;

padding:16px 32px;

border-radius:50px;

text-decoration:none;
font-weight:600;

border:
1px solid rgba(255,255,255,.2);

color:white;

}

/* GLOWS */

.hero-glow{

position:absolute;
border-radius:50%;

filter:blur(120px);

}

.glow-1{

width:450px;
height:450px;

background:#c9487c;

top:-120px;
right:-100px;

opacity:.25;

}

.glow-2{

width:500px;
height:500px;

background:#942a53;

bottom:-150px;
left:-150px;

opacity:.25;

}

/* COMBOS */

.combos{

padding:120px 8%;

background:
linear-gradient(
180deg,
#6f1d3d,
#58142f
);

}

.section-heading{

text-align:center;
max-width:800px;
margin:auto auto 70px;

}

.section-heading span{

color:var(--gold);
letter-spacing:3px;

}

.section-heading h2{

font-family:
'Playfair Display',
serif;

font-size:4rem;

margin:15px 0;

}

.combo-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));

gap:30px;

}

.combo-card{

position:relative;

padding:35px;

border-radius:28px;

background:

linear-gradient(
145deg,
rgba(255,255,255,.08),
rgba(255,255,255,.03)
);

border:
1px solid rgba(255,255,255,.12);

backdrop-filter:
blur(20px);

overflow:hidden;

transition:.4s;

}

.flip-card:hover .front{

    transform:
    rotateY(0deg)
    translateY(-10px);

}

.combo-card::before{

content:"";

position:absolute;

top:0;
left:0;

height:5px;
width:100%;

background:

linear-gradient(
90deg,
var(--gold),
#ffffff,
var(--gold)
);

}

.featured{

background:

linear-gradient(
145deg,
#942a53,
#671a38
);

}

.offer-tag{

display:inline-block;

padding:8px 16px;

border-radius:30px;

background:white;
color:#671a38;

font-size:.8rem;
font-weight:700;

margin-bottom:20px;

}

.combo-card h3{

font-family:
'Playfair Display',
serif;

font-size:2rem;

margin-bottom:15px;

}

.combo-card p{

opacity:.85;
margin-bottom:20px;

}

.combo-card ul{

padding-left:18px;

}

.combo-card li{

margin-bottom:10px;

}

.price{

font-size:2.5rem;
font-weight:700;

color:var(--gold);

margin-top:20px;

}

/* CTA */

.cta{

padding:140px 8%;

text-align:center;

background:

linear-gradient(
135deg,
#942a53,
#c9487c
);

position:relative;

}

.cta::before{

content:"";

position:absolute;
inset:0;

background:url("images/pattern.png");

background-size:500px;

opacity:.15;

}

.cta h2{

position:relative;

font-family:
'Playfair Display',
serif;

font-size:4rem;

margin-bottom:20px;

}

.cta p{

position:relative;
margin-bottom:35px;

}

@media(max-width:768px){

.hero{
text-align:center;
}

.hero-meta{
justify-content:center;
}

.hero-buttons{
justify-content:center;
flex-wrap:wrap;
}

.section-heading h2{
font-size:2.8rem;
}

.hero h1{
font-size:4rem;
}

}
.front{

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;

}


.front h3{

font-size:2.5rem;
margin-bottom:15px;

}

.offer-text{

font-size:1.2rem;
opacity:.9;

margin-bottom:20px;

}

.price{

font-size:3.5rem;
font-weight:700;

color:var(--gold);

margin-bottom:25px;

}

.flip-btn{
    padding:14px 28px;
    border:none;
    border-radius:999px;
    background: linear-gradient( 135deg, #c9487c, #942a53 );
    color:white;
    font-weight:600;
    cursor:pointer;
}

.flip-back-btn{
    padding:14px 28px;
    border:none;
    border-radius:999px;
    background: linear-gradient( 135deg, #c9487c, #942a53 );
    color:white;
    font-weight:600;
    cursor:pointer;
}

.flip-card{
    width:100%;
    min-height:500px;
    height:auto;
    perspective:1500px;
}

.flip-card-inner{
    position:relative;
    width:100%;
    height:100%;

    transform-style:preserve-3d;
    transition:transform .8s ease-in-out;
}

.flip-card.active .flip-card-inner{
    transform:rotateY(180deg);
}

.front,
.back{

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;

}

.front{

    transform:rotateY(0deg);

}

.back{

    transform:rotateY(180deg);

    overflow-y:auto;

}

img{
    max-width:100%;
    height:auto;
    display:block;
}

.beer-list{
    list-style-position: inside;
    padding: 0;
    margin: 0 auto;
}

.beer-list li{
    margin-bottom: 10px;
}

h3{
    text-align: center;
}

    .front,
    .back{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        text-align:center;
    }

    .beer-list{
        list-style:none; /* Remove bullets */
        padding:0;
        margin:20px 0;
        text-align:center;
        width:100%;
    }

    .beer-list li{
        margin-bottom:10px;
    }

    .front > *,
    .back > *{
        margin-bottom:15px;
    }

    .front > *:last-child,
    .back > *:last-child{
        margin-bottom:0;
    }

    .flip-back-btn,
    .flip-btn{
        margin-top:20px;
    }

/* =========================
   LARGE TABLETS
========================= */

@media (max-width: 1024px){

    .navbar{
        padding:20px 5%;
    }

    .hero,
    .combos,
    .cta{
        padding-left:5%;
        padding-right:5%;
    }

    .hero h1{
        font-size:clamp(3rem,7vw,5.5rem);
    }

    .section-heading h2,
    .cta h2{
        font-size:3rem;
    }

    .flip-card{
        height:520px;
    }

}

/* =========================
   TABLETS
========================= */

@media (max-width: 768px){

    .navbar{
        padding:18px 5%;
    }

    .logo{
        font-size:1.2rem;
        letter-spacing:2px;
    }

    .nav-btn{
        padding:10px 18px;
        font-size:.9rem;
    }

    .hero{
        text-align:center;
        justify-content:center;
        padding-top:120px;
        padding-bottom:80px;
    }

    .hero-content{
        max-width:100%;
    }

    .hero h1{
        font-size:clamp(2.8rem,10vw,4rem);
        line-height:1;
    }

    .hero p{
        font-size:1rem;
        margin:auto auto 35px;
    }

    .hero-meta{
        justify-content:center;
        flex-wrap:wrap;
        gap:20px;
    }

    .hero-meta div{
        min-width:120px;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .section-heading h2{
        font-size:2.5rem;
    }

    .combo-grid{
        grid-template-columns:1fr;
    }

    .combo-card{
        padding:28px;
    }

    .flip-card{
        height:auto;
        min-height:500px;
    }

    .cta{
        padding:100px 5%;
    }

    .cta h2{
        font-size:2.8rem;
    }

}

/* =========================
   MOBILE PHONES
========================= */

@media (max-width: 480px){

    .navbar{
        padding:16px 20px;
    }

    .logo{
        font-size:1rem;
    }

    .nav-btn{
        padding:8px 14px;
        font-size:.8rem;
    }

    .hero{
        padding:120px 20px 70px;
    }

    .badge{
        padding:10px 18px;
        font-size:.8rem;
    }

    .hero h1{
        font-size:2.5rem;
    }

    .hero p{
        font-size:.95rem;
        line-height:1.7;
    }

    .hero-meta{
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .hero-meta strong{
        font-size:1rem;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        justify-content:center;
        padding:14px 20px;
    }

    .section-heading{
        margin-bottom:50px;
    }

    .section-heading h2{
        font-size:2rem;
    }

    .section-heading span{
        font-size:.8rem;
    }

    .combo-card{
        padding:24px;
        border-radius:22px;
    }

    .combo-card h3{
        font-size:1.7rem;
    }

    .price{
        font-size:2.5rem;
    }

    .front h3{
        font-size:2rem;
    }

    .offer-text{
        font-size:1rem;
    }

    .flip-card{
        min-height:450px;
    }

    .cta{
        padding:80px 20px;
    }

    .cta h2{
        font-size:2rem;
    }.flip-card

    .cta p{
        font-size:.95rem;
    }

    /* Smaller glow effects */
    .glow-1{
        width:250px;
        height:250px;
    }

    .glow-2{
        width:280px;
        height:280px;
    }

}

/* =========================
   VERY SMALL DEVICES
========================= */

@media (max-width: 360px){

    .hero h1{
        font-size:2rem;
    }

    .section-heading h2,
    .cta h2{
        font-size:1.8rem;
    }

    .price{
        font-size:2rem;
    }

    .front h3{
        font-size:1.6rem;
    }

}