* {
    box-sizing: border-box;
}

body {
    font-family: 'Champagne & Limousines', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f0e1; /* Beige theme */
}

.navigator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #8b4513; /* SaddleBrown */
    color: white;
    position: relative; /* Ensure menu dropdown positions correctly */
}

.nav-left .logo {
    height: 90px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu {
    display: flex;
    gap: 15px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.menu a:hover {
    text-decoration: underline;
    color: #ff8c00; /* Dark Orange */
}

.hamburger {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
}

@media (max-width: 768px) {
    .menu {
        display: none; /* Hidden by default */
        flex-direction: column; /* Stack links vertically */
        position: absolute;
        top: calc(60px + 10px); /* Position below the navigator */
        right: 10px; /* Adjust spacing from the right edge */
        width: 50%; /* Control the width of the dropdown */
        max-width: 300px; /* Optional: limit the maximum width */
        background: #8b4513; /* Dropdown background color */
        border-radius: 8px; /* Rounded corners for dropdown */
        padding: 10px; /* Padding inside the dropdown */
        z-index: 1000; /* Ensure it appears above other elements */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    }

    .navigator.active .menu {
        display: flex; /* Show when active */
    }

    .menu a {
        padding: 12px 15px; /* Adjust padding for links */
        margin: 5px 0; /* Spacing between links */
        text-align: left; /* Align text to the left */
        font-size: 16px; /* Adjust font size */
    }

    .hamburger {
        display: flex; /* Show hamburger on mobile */
    }
}


.slider {
    width: 100%;
    height: 600px; /* Increased slider height */
    overflow: hidden;
    position: relative;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer {
    width: 100%;
    background-color: #8b4513;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer a {
    color: #ff8c00; /* Dark Orange */
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
        
.about-section {
    width: 100%;
    max-width: 1500px;
    margin: 40px auto; /* Increased margin for spacing */
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}
    
        .newsletter-section {
            width: 100%;
            padding: 30px 20px;
            background-color: #ffe4b5; /* Light orange to match theme */
            text-align: center;
            border-top: 5px solid #ff8c00; /* Dark orange border */
        }
        .newsletter-section h1 {
            font-size: 24px;
            color: #8b4513; /* SaddleBrown */
            margin-bottom: 20px;
        }

        .newsletter-section form {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
         .newsletter-section input[type="email"] {
            width: 90%;
            max-width: 400px;
            padding: 12px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 8px;
        }

        .newsletter-section button {
            padding: 12px 20px;
            font-size: 16px;
            color: white;
            background-color: #ff8c00; /* Dark orange */
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .newsletter-section button:hover {
            background-color: #e67e00; /* Slightly darker orange */
        }
        
        .ticker-container {
            width: 100%;
            background-color: #8b4513; /* SaddleBrown */
            color: white;
            overflow: hidden;
            position: relative;
            height: 40px;
        }

        .ticker {
            display: flex;
            animation: ticker-scroll 15s linear infinite;
            white-space: nowrap;
        }

        .ticker span {
            padding: 0 50px;
            font-size: 18px;
            line-height: 40px;
        }

        .ticker a {
            color: #ff8c00; /* Dark Orange */
            text-decoration: none;
        }

        .ticker a:hover {
            text-decoration: underline;
        }

        .ticker-container:hover .ticker {
            animation-play-state: paused;
        }

        @keyframes ticker-scroll {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }
        
        
        
#cookie-banner {
    font-size: 14px;
}
#cookie-banner button {
    border-radius: 4px;
}
        
h1 {
    color: #8b4513; /* SaddleBrown */
    font-size: 36px;
    margin-bottom: 20px;
}

.map-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%; /* This maintains a 16:9 aspect ratio */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
