/* ================= GLOBAL ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: Arial, sans-serif;
}

/* ================= HEADER ================= */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#233241;
    color:white;
    padding:15px 25px;
    position:sticky;
    top:0;
    z-index:1000;
    flex-wrap:wrap;
}

header h1{
    font-size:28px;
    margin:0;
    font-family:'Playfair Display', serif;
}

/* ================= NAVBAR ================= */

nav{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

nav a{
    text-decoration:none;
    color:white;
    font-size:16px;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:#f1c40f;
}

/* ================= HERO SECTION ================= */

.body{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;

    background:
    linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.7)),
    url("./delicious.jpg");

    background-size:cover;
    background-position:center;
}

.body h1{
    font-family:'Playfair Display', serif;
    font-size:60px;
    font-weight:600;
    line-height:1.2;
    letter-spacing:1px;
}

.body h3{
    font-size:32px;
}

.body p{
    max-width:800px;
    font-size:22px;
    line-height:1.7;
}

/* ================= STORY SECTION ================= */

.story{
    width:100%;
    padding:60px 5%;
    background:#fdfeff;
}

.story h5{
    letter-spacing:3px;
    text-transform:uppercase;
}

.story h1{
    font-size:40px;
    font-weight:bold;
    margin-bottom:20px;
    font-family:cursive;
}

.story p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:20px;
}

/* ================= ABOUT SECTION ================= */

.about{
    padding:60px 5%;
}

.about p{
    font-size:18px;
    line-height:1.8;
}

/* ================= IMAGES ================= */

.story img,
.about img{
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:10px;
}

/* ================= BUTTON ================= */

.btn{
    border-radius:8px !important;
}

/* ================= FOOTER ================= */

#footer{
    padding:40px 20px;
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width:768px){

    header{
        flex-direction:column;
        align-items:center;
        text-align:center;
        padding:15px;
    }

    header h1{
        font-size:22px;
        margin-bottom:10px;
    }

    nav{
        width:100%;
        justify-content:center;
        gap:15px;
        margin-top:10px;
    }

    nav a{
        font-size:14px;
    }

    .body{
        padding:30px 15px;
        min-height:100vh;
    }

    .body h1{
        font-size:34px;
        line-height:1.3;
    }

    .body h3{
        font-size:24px;
    }

    .body p{
        font-size:16px;
        line-height:1.6;
    }

    .story,
    .about{
        padding:30px 15px;
    }

    .story h1{
        font-size:28px;
    }

    .story p,
    .about p{
        font-size:16px;
    }

    .story img,
    .about img{
        height:250px;
        margin-bottom:15px;
    }

    #footer{
        text-align:center;
    }

    #footer h1{
        font-size:24px;
    }

    #footer h4,
    #footer p{
        font-size:16px;
    }

    .btn{
        width:auto;
    }
}