@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

body {
    font-family: Arial, sans-serif;
    background-color: #FEFAE0;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    
    width: 100%;
}

header .logo {
    text-decoration: none;
    color: inherit;
}

header h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
    color: #BC6C25;
    margin-left: 50px;
}
hr {
    margin: 20px;
    color: #283618;
}
.nav {
    display: flex;
    align-items: center;
}

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

.nav-links a {
    text-decoration: none;
    color: #BC6C25;
    font-weight: 900;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 10px 15px;
}

.nav-links a:hover {
    color: #DDA15E;
}

.buttons {
    display: flex;
    gap: 10px;
    margin-right: 50px;
}

header button {
    font-size: medium;
    color: #BC6C25;
    width: 80px;
    height: 35px;
    border-radius: 12px;
    border: 2px solid #BC6C25;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

header button:hover {
    background-color: #BC6C25;
    color: #FEFAE0;
}

section {
    text-align: center;
    padding: 20px;
}

section h1 {
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5em;
}

section p {
    margin: 10px 0;
    font-size: 18px;
    color: #666;
}
section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    margin-top: 30px;
}

/* Responsive navigation menu */
.nav > .nav-header {
    display: inline;
    z-index: 3;
}

/* .nav > .nav-header > .nav-title {
    display: inline-block;
    font-size: 25px;
    color: rgb(223, 80, 151);
    padding: 10px 10px 10px 10px;
} */

.nav > .nav-btn {
    display: none;
}

.nav > .nav-links {
    display: inline;
    float: right;
    font-size: 18px;
    padding-top: 2%;
}

/* .nav > .nav-links > a {
    display: inline-block;
    padding: 30px 15px 13px 15px;
    text-decoration: none;
    color: rgb(243, 182, 225);
    margin-inline: 30px;
    font-weight: 900;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.nav > .nav-links > a:hover {
    color: rgb(223, 80, 151);
} */

.nav > #nav-check {
    display: none;
}

@media (max-width: 600px) {
    .nav > .nav-btn {
        display: inline-block;
        position: absolute;
        right: 5px;
        top: 15px;
    }
    .nav > .nav-btn > label {
        display: inline-block;
        width: 50px;
        height: 50px;
        padding: 13px;
    }
    .nav > .nav-btn > label:hover, .nav #nav-check:checked ~ .nav-btn > label {
        background-color: white;
    }
    .nav > .nav-btn > label > span {
        display: block;
        width: 25px;
        height: 2px;
        background: #333;
        margin: 6px 0;
    }
    .nav > .nav-links {
        display: block;
        width: 100%;
        background-color: rgb(255, 255, 255);
        height: 0px;
        transition: all 0.3s ease-in;
        overflow-y: hidden;
        top: 50px;
        left: 0px;
    }
    .nav > .nav-links > a {
        display: block;
        text-decoration: none;
    }
    .nav > #nav-check:not(:checked) ~ .nav-links {
        height: 0px;
    }
    .nav > #nav-check:checked ~ .nav-links {
        height: calc(100vh - 50px);
        overflow-y: auto;
    }
    .buttons {
        flex-direction: column;
        margin: 20px 0;
        gap: 15px;
    }
}

footer {
    text-align: center;
    margin-top: 20px;
    background-color: #283618;
    color: white;
    width: 100%;
    padding: 10px;
    position: absolute;
    bottom: 0;
}