*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: 'Inter', Arial, sans-serif;
    color:#111;
}

.hero{
    height:100vh;
    padding-top:80px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
     transition: filter 0.5s ease;

    background-image: url("images/hero.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero.blur{
    filter: blur(4px);
}

.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.55);
    z-index:1;
}

.hero h1,
.hero p,
.hero .button{
    position: relative;
    z-index: 2;
    color: white;
}

.button{
    background:rgb(0, 0, 0);
    color:rgb(255, 255, 255);
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    transition:0.3s;
}

.button:hover{

    background:#2c2c2c;

}

.section{
    padding:140px 20px;
    text-align:center;
    opacity:0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section.visible{
    opacity:1;
    transform: translateY(0);
}

.section h2{
    font-size:44px;
    font-family: 'Playfair Display', serif;
    margin-bottom:25px;
}

.section p{
    max-width:700px;
    margin:0 auto 20px auto;
    font-size:18px;
    line-height:1.6;
}

.dark{
    background:#0f0f0f;
    color:#f5f5f5;
}

.grid{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:30px;
    flex-wrap:wrap;
}

.card1{
    width:200px;
    height:150px;
    background:#333;
    background-image: url("images/card1.png");
    background-size: cover;
    background-position: center;
    position: relative;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    border-radius:10px;
}

.card2{
    width:200px;
    height:150px;
    background:#333;
    background-image: url("images/card2.png");
    background-size: cover;
    background-position: center;
    position: relative;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    border-radius:10px;
}

.card3{
    width:200px;
    height:150px;
    background:#333;
    background-image: url("images/card3.png");
    background-size: cover;
    background-position: center;
    position: relative;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    border-radius:10px;
}

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 40px;
    z-index:1000;

    background:rgba(0,0,0,0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color:white;

    transition: all 0.4s ease;
}

.navbar.scrolled{
    background: rgba(0,0,0,0.85);
    padding:14px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.navbar .links a{
    transition: 0.3s ease;
}

.navbar.scrolled .links a{
    opacity:0.85;
}

.navbar.scrolled .links a:hover{
    opacity:1;
}

.logo{
    font-weight:500;
    letter-spacing:1px;
}

.links a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    font-size:14px;
    opacity:0.9;
    transition:0.3s;
}

.links a:hover{
    opacity:1;
}


.reviews-grid{
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap: wrap;
    margin-top:40px;
}

.review-card{
    background:#111;
    color:white;
    padding:30px;
    width:280px;
    border-radius:15px;
    text-align:left;
    transition:0.3s;
}

.review-card:hover{
    transform:translateY(-5px);
}

.review-card p{
    font-size:16px;
    line-height:1.5;
    margin-bottom:15px;
    opacity:0.9;
}

.review-card span{
    font-size:14px;
    opacity:0.7;
}

.review-card{
    transition:0.3s;
    cursor:pointer;
}

.review-card.dim{
    opacity:0.4;
    transform:scale(0.95);
}

.review-card.active{
    opacity:1;
    transform:scale(1.05);
}

.stars{
    color:#FFD700;
    margin-bottom:10px;
    font-size:18px;
}

.menu-item{
    background: rgba(255,255,255,0.05);
    padding:5px;
    border-radius:14px;
    margin:15px 0;
    transition:0.3s ease;
    cursor:pointer;
}


.menu-item:hover{
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

.menu-header{
    display:grid;
    grid-template-columns: 1fr auto 1fr;
    align-items:center;
    margin-bottom:10px;
}

.menu-title{
    font-size:20px;
    font-weight:500;
    
}

.menu-header h3{
    margin:0;
    font-size:20px;
}

.tag{
    font-size:12px;
    padding:4px 10px;
    border-radius:20px;
    background:#333;
    color:white;
}

.tag.vg{
    background:#1abc9c;
}

.tag.gf{
    background:#2ecc71;
}

.tag.v{
    background:#9b59b6;
}

.tag{
    font-size:12px;
    padding:4px 10px;
    border-radius:20px;
    color:white;
    margin-left:5px;
}

.details{
    max-height:0;
    overflow:hidden;
    transition:2.5s ease;
}

.menu-item.active .details{
    max-height:200px;
}

.menu-item{
    transition:0.3s ease;
    cursor:pointer;
}

.menu-item::after{
    content:"▼";
    float:right;
    opacity:0.4;
}

.menu-item.active::after{
    content:"▲";
}

.download-btn{
    display:inline-block;
    margin:20px 0;
    padding:12px 20px;
    background:white;
    color:black;
    text-decoration:none;
    border-radius:8px;
    transition:0.3s ease;
}

.download-btn:hover{
    background:#ddd;
}


.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {

    .navbar {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .logo {
        order: 1;
    }

    .menu-toggle {
        display: block;
        order: 2;
        margin-left: auto;
    }

    .links {
        display: none;
        width: 100%;
        flex-direction: column;
        margin-top: 15px;
    }

    .links.active {
        display: flex;
    }

    .links a {
        margin: 10px 0;
    }
}
