/* Global Styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: top 0.3s;
}

body,
html {
    background-color: #D0B8A8;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #153448;
    color: #F8EDE3;
    padding: 15px;
    text-align: center;
    display: none;
    /* Hidden by default */
    z-index: 1000;
}

.cookie-consent-banner p {
    margin:5px;
    font-size: 15px;
}

.cookie-consent-banner button {
    background-color: #F8EDE3;
    color: #8D493A;
    border: none;
    padding: 10px 10px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, .15);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex: 0 0 auto;
    height: 50px;
}

.nav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.menu-text {
    display: none;
    background: none;
    border: none;
    color: #8D493A;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

/* Nav links styles */
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
    justify-content: space-between;
}

.nav-links a {
    color: #761f0c;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    justify-content: space-between;
}

.nav-links a:hover {
    color: red;
}

/* Scroll-to-Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: #8D493A;
}

html {
    scroll-behavior: smooth;
}

/* Subscribe Section Styles */
.subscribe-section {
    background-color: #D0B8A8;
    padding: 20px;
    text-align: center;
}

.subscribe-section h3 {
    margin-top: 10px;
    color: #8D493A;
    font-size: 30px;
}

.subscribe-section input[type="email"] {
    padding: 10px;
    width: 50%;
    max-width: 300px;
    margin-bottom: 10px;
    border: 1px solid #8D493A;
    border-radius: 5px;
}

.subscribe-section button {
    background-color: #8D493A;
    color: #F8EDE3;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.subscribe-section button.subscribed {
    background-color: #4CAF50;
    color: #FFFFFF;
}

/* Footer Styles */
footer {
    background-color: #8D493A;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 30px;
}

.footer-column h3 {
    color: #F8EDE3;
    font-size: 25px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li a {
    color: #F8EDE3;
    text-decoration: none;
    letter-spacing: 1px;
    line-height: 2.0;
}

/* Copyright Section Styles */
.copyright {
    background-color: #D0B8A8;
    text-align: center;
    padding: 10px;
}

.copyright p {
    color: #8D493A;
    margin: 0;
}

/* Responsive Styling */
@media screen and (max-width: 768px) {
    .menu-text {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: rgba(255, 255, 255, .9);
        backdrop-filter: blur(20px);
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-links li {
        margin-left: 0;
        text-align: center;
        padding: 10px 0;
    }

    nav.active .nav-links {
        display: flex;
    }
}