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

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #000000;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 55px;
}

header {
    background: black;
    color: white;
}

header nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
}

header nav ul li a {
    color: white;
    text-decoration: none;
}

#hero {
    height: 90vh;
    color: #b7965c;
}
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../assets/images/background.jpeg") center/cover no-repeat;
    height: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.hero-content {
    margin: 0 50px;
}
.hero-content h1 {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    font-size: xx-large;
}
.hero-content p {
    margin-top: 10px;
}

.cta {
    color: rgb(162, 159, 159);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 10px;
    border: solid #b7965c;
}
.cta:hover {
    color: white;
    background-color: #b7965c;
    cursor: grab;
}

/* pop up */
/* The popup form - hidden by default */
.form-popup {
    display: none;
    position: fixed;
    top: 20px;
    right: 15px;
    border: 3px solid #b7965c;
    z-index: 9;
}

/* Add styles to the form container */
.form-container {
    max-width: 300px;
    padding: 10px;
    background-color: #232222;
    color: rgb(162, 159, 159);
}
/* Set a style for the submit/login button */
.form-container .btn {
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
    margin-top: 10px;
    background-color: #b7965c;
}

/* Add some hover effects to buttons */
.form-container .btn:hover {
    opacity: 1;
}

.footer {
    background-color: #000000;
    color: #b7965c;
    padding: 20px 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left,
.footer-right {
    font-size: 0.9em;
}

.footer-left p {
    margin: 5px 0;
}

.footer-right {
    text-align: right;
}
.footer-right a {
    color: #b7965c;
}
.footer-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.footer-icon i {
    padding: 5px;
    font-size: 28px;
}
.footer-icon a {
    color: #b7965c;
}
.hr-footer {
    border: solid 1px rgb(162, 159, 159);
    margin: 10px 0;
}

@media only screen and (max-width: 768px) {
    .hero-content {
        margin: 0 10px;
    }
    .hero-content p {
        font-size: 12px;
    }
    .container {
        padding: 20px 20px;
    }
    .footer {
        margin: 0;
        padding: 0;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-left,
    .footer-right {
        margin-bottom: 10px;
    }
    .footer p {
        font-size: 12px;
    }
}
