/* ===========================
   Moonlight Balcony Wine House
   Premium Summer Style
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Montserrat',sans-serif;
    background:#faf7f2;
    color:#444;
    overflow-x:hidden;

}

/* ===========================
NAVBAR
=========================== */

header{

    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;

}

nav{

    width:100%;
    height:85px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 70px;

    backdrop-filter:blur(15px);

    background:rgba(255,255,255,.55);

    border-bottom:1px solid rgba(255,255,255,.4);

}

.logo{

    font-size:34px;

    font-family:'Playfair Display',serif;

    color:#b68b35;

    font-weight:700;

}

nav ul{

    display:flex;

    list-style:none;

}

nav li{

    margin-left:40px;

}

nav a{

    text-decoration:none;

    color:#555;

    font-size:15px;

    font-weight:600;

    transition:.35s;

}

nav a:hover{

    color:#c8a04c;

}

/* ===========================
HERO
=========================== */

.hero{

    position:relative;

    height:100vh;

    background:url(hero.jpg);

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

    rgba(0,0,0,.25),

    rgba(0,0,0,.45)

    );

}

.hero-content{

    position:relative;

    width:700px;

    max-width:90%;

    text-align:center;

    color:white;

    padding:60px;

    border-radius:28px;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(18px);

    box-shadow:

    0 25px 60px rgba(0,0,0,.30);

}

.hero h1{

    font-family:'Playfair Display',serif;

    font-size:70px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero p{

    font-size:20px;

    line-height:1.8;

}

/* ===========================
SECTIONS
=========================== */

section{

    padding:110px 10%;

}

.container{

    max-width:1200px;

    margin:auto;

}

h2{

    font-family:'Playfair Display',serif;

    font-size:48px;

    color:#b68b35;

    margin-bottom:45px;

    text-align:center;

}

.about p{

    max-width:900px;

    margin:auto;

    text-align:center;

    line-height:2;

    font-size:18px;

    margin-bottom:25px;

}

/* ===========================
FEATURES
=========================== */

.cards{

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.card{

    padding:45px;

    border-radius:22px;

    background:white;

    transition:.4s;

    box-shadow:

    0 20px 45px rgba(0,0,0,.08);

}

.card:hover{

    transform:translateY(-10px);

}

.card h3{

    color:#b68b35;

    margin-bottom:15px;

    font-size:26px;

}

.card p{

    line-height:1.8;

}

/* ===========================
GALLERY
=========================== */

.gallery-grid{

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(300px,1fr));

    gap:25px;

}

.gallery-grid img{

    width:100%;

    height:280px;

    object-fit:cover;

    border-radius:20px;

    transition:.5s;

    cursor:pointer;

    box-shadow:

    0 12px 35px rgba(0,0,0,.15);

}

.gallery-grid img:hover{

    transform:

    scale(1.05)

    rotate(.5deg);

}

/* ===========================
CONTACT
=========================== */

.contact{

    background:#f4eee4;

}

.contact-box{

    max-width:700px;

    margin:auto;

    background:white;

    padding:60px;

    border-radius:25px;

    text-align:center;

    box-shadow:

    0 20px 45px rgba(0,0,0,.08);

}

.contact-box p{

    margin:25px 0;

    font-size:18px;

    line-height:2;

}

/* ===========================
FOOTER
=========================== */

footer{

    padding:35px;

    background:#3f372e;

    color:white;

    text-align:center;

    letter-spacing:1px;

}

/* ===========================
ANIMATIONS
=========================== */

.card,

.gallery-grid img,

.hero-content{

    animation:fadeUp 1s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:

        translateY(40px);

    }

    to{

        opacity:1;

        transform:

        translateY(0);

    }

}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:900px){

nav{

padding:0 25px;

}

.logo{

font-size:24px;

}

nav li{

margin-left:18px;

}

.hero h1{

font-size:48px;

}

.hero-content{

padding:35px;

}

h2{

font-size:36px;

}

}