/* ===== RESET ===== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Comfortaa',sans-serif;
    background:#efefef;
    color:#654828;
    overflow-x:hidden;
}

img{
    display:block;
    max-width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:min(1200px,90%);
    margin:auto;
}

/* ===== COLORS ===== */

:root{
    --brown:#6b4d27;
    --light:#ece6dd;
    --olive:#c8c693;
    --text:#654828;
    --white:#ffffff;
}

/* ===== HERO ===== */

.hero{
    height:100vh;
    min-height:900px;
    background:url("images/hero-bg.png") center center/cover no-repeat;
    position:relative;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:30px;
}

.logo img{
    width:170px;
}

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

.nav-links a{
    color:white;
    font-size:20px;
    transition:.3s;
}

.nav-links a:hover{
    opacity:.7;
}

.hero-content{
    max-width:900px;
    margin:120px auto 0;
    text-align:center;
    color:white;
}

.hero-description{
    max-width:450px;
    margin:0 auto 40px;
    font-size:13px;
    line-height:1.5;
}

.hero h1{
    font-family:'Righteous',cursive;
    font-size:96px;
    letter-spacing:3px;
}

.hero-content p{
    font-size:34px;
    margin-top:10px;
}

.hero-buttons{
    margin-top:50px;
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.btn{
    min-width:180px;
    padding:16px 40px;
    border-radius:40px;
    text-align:center;
    transition:.3s;
    font-weight:600;
}

.btn-outline{
    border:2px solid var(--olive);
    color:white;
}

.btn-outline:hover{
    background:var(--olive);
    color:#222;
}

.btn-filled{
    background:var(--olive);
    color:#222;
}

.hero-script{
    position:absolute;
    right:120px;
    bottom:50px;
    color:white;
    font-size:100px;
    font-weight:300;
}
.hero-decoration{
    position:absolute;
    right:10px;
    bottom:-200px;
    width:3000px;
}

/* ===== DRINKS ===== */

.drinks-section{
    padding:100px 0;
}




.drink-image-card img{
    width:1500px;
    display:block;
    margin:0 auto;
}


.drink-menu-card{
    background:var(--light);
    width:420px;
    min-height:520px;
    border-radius:40px;
    padding:50px;
}

.drink-menu-card h4{
    font-family:'Righteous',cursive;
    text-align:center;
    font-size:34px;
    margin-bottom:30px;
    font-weight:400;
}

.drink-menu-card ul{
    margin-bottom:50px;
}

.drink-menu-card li{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
}

/* ===== BREAKFAST ===== */

.breakfast-section{
    padding:80px 0;
}

.breakfast-header{
    display:flex;
    gap:50px;
    align-items:center;
    margin-bottom:60px;
}

.breakfast-header h2{
    font-family:'Righteous', cursive;
    font-size:52px;
    font-weight:400;
}

.breakfast-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:100px;
}

.menu-column h3{
    font-family:'Righteous',cursive;
    text-align:center;
    margin-bottom:40px;
    font-size:32px;
    font-weight:400;
}

.food-item{
    display:grid;
    grid-template-columns:70px 110px 1fr;
    gap:20px;
    align-items:center;
    margin-bottom:35px;
}

.food-item img{
    width:110px;
    height:110px;
    object-fit:cover;
}

.price{
    font-weight:700;
}

/* ===== ABOUT ===== */

.about-section{
    background:url("images/coffee-texture.png") center/cover no-repeat;
    padding:120px 20px;
}

.about-card{
    max-width:900px;
    margin:auto;
    background:white;
    padding:70px;
    border-radius:40px;
    text-align:center;
    font-size:32px;
    line-height:1.5;
}

/* ===== RESERVATION ===== */

.reservation-section{
    background:url("images/reservation-bg.png") center/cover no-repeat;
    padding:80px 0 400px;
}

.reservation-header{
    text-align:center;
}

.reservation-header h2{
    font-family:'Righteous',cursive;
    font-size:90px;
    font-weight:400;
    margin-bottom:300px;
}
.reservation-info{
    display:flex;
    justify-content:center;
    margin:30px 0 60px;
}

.reservation-info img{
    width:100%;

    display:block;
    background: var(--white)

}
.reservation-info{
    max-width:850px;
    margin:auto;
    background:var(--olive);
    color:var(--text);
    padding:20px;
    border-radius:30px;
}


.reservation-form{
    max-width:1100px;
    margin:70px auto 0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:120px;
}

.form-column{
    display:flex;
    flex-direction:column;
}

.form-column label{
    color:white;
    font-size:28px;
    margin-bottom:12px;
}

.form-column input{
    height:55px;
    border:none;
    border-radius:30px;
    margin-bottom:30px;
    padding:0 20px;
    font-size:18px;
}

.reserve-btn{
    display:block;
    margin:30px auto 0;
    border:none;
    background:var(--olive);
    color:var(--text);
    padding:18px 50px;
    border-radius:35px;
    font-size:26px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.reserve-btn:hover{
    transform:translateY(-3px);
}

/* ===== FOOTER ===== */

footer{
    padding:70px 0;
    background:#ffffff;
}

.footer-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:120px;
}

.footer-grid h3{
    font-size:30px;
    margin-bottom:20px;
}

.newsletter{
    display:flex;
    margin-top:25px;
    max-width:420px;
    
}

.newsletter input{
    flex:1;
    border:none;
    padding:15px;
    background:#e8ddcf;
    border-radius:30px

}

.newsletter button{
    border:none;
    background:var(--brown);
    color:white;
    padding:0 25px;
    cursor:pointer;
    border-radius:30px
}

.find-us{
    margin-top:60px;
}

.contact-list li{
    margin-bottom:18px;
}
.social-icons{
    display:flex;
    gap:20px;
    margin-top:20px;
}

.social-icons a{
    transition:.3s;
}

.social-icons a:hover{
    transform:translateY(-3px);
}

.social-icons img{
    width:40px;
    height:40px;
    object-fit:contain;
}
/* ===== TABLET ===== */

@media(max-width:1024px){

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

.hero-script{
    right:40px;
    font-size:70px;
}

.drinks-wrapper{
    flex-direction:column;
}

.breakfast-grid{
    grid-template-columns:1fr;
}

.reservation-form{
    gap:40px;
}

}

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

@media(max-width:768px){

.navbar{
    flex-direction:column;
    gap:20px;
}

.nav-links{
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

.hero{
    min-height:auto;
    padding-bottom:140px;
}

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

.hero-content p{
    font-size:22px;
}

.hero-script{
    position:static;
    text-align:center;
    margin-top:80px;
    font-size:56px;
}

.drink-image-card,
.drink-menu-card{
    width:100%;
}

.about-card{
    padding:35px;
    font-size:20px;
}

.reservation-header h2{
    font-size:58px;
}

.reservation-form{
    grid-template-columns:1fr;
    width:90%;
}

.form-column label{
    font-size:20px;
}

.footer-grid{
    grid-template-columns:1fr;
    gap:60px;
}

.footer-grid h3{
    font-size:32px;
}

.newsletter{
    flex-direction:column;
    gap:10px;
}

.newsletter button{
    padding:15px;
}

}