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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; /* fonts */
    line-height: 1.6;
    background-color: #e2e1d5; 
    color: #333333; /* Default text color */
    margin: 0;
    padding: 0; 
    margin-top: 80px; /* Adjust this value based on your header height */
}

/* Header */
.site-header {
    background-color: #000000; /* Black background for the header */
    color: #fff;
    position: fixed; /* Ensure the entire header (logo + menu) is fixed */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 10px 0;
}

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

.logo img {
    width: 200px;
    height: 72px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin: 0 15px;
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    transition: background 0.3s ease;
    font-size: 16px; /* Set the font size for the header menu links here */
}

.main-nav ul li a:hover {
    background: #722830;
    border-radius: 5px;
}

.highlighted {
    background: #722830;
    padding: 5px 10px;
    border-radius: 5px;
}

.header-contact a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.header-contact-black a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.header-contact i {
    font-size: 20px;
    margin-right: 8px;
}

/* Hero Section */
.hero {
    background: #e2e1d5; /* Black, same as header */
    color: white;
    padding: 6rem 0 5rem; /* Increase the top padding to push content below the fixed header */
    margin-top: 80px; /* Offset for the fixed header */
}

.hero-sub {
    background: #e2e1d5; /* Black, same as header */
    color: black;
    margin-top: 0px;
    padding: 0rem 0 5rem;
}

.hero-sub-text {
    margin-top: 0px;
    padding-left: 20px; /* Adjust this value to align with the logo and .hero-text */
    line-height: 1.1; /* Match this value to the line-height of .hero-text */
    color: #FFFFFF; /* Assuming you want the text to be white like .hero-text */
}

.hero-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: left;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-weight: bold;
    margin: 0.5rem 0;
}

.hero-media {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image, .hero-video {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Optional: Adds a slight border radius */
}

.hero h2 {
    color: #722830; /* Gold for important headings */
    margin-bottom: 1rem;
}

.hero p .btn {
    background: #722830; /* Copper button for a subtle accent */
    color: white;
    padding: 1rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 1rem;
}

.hero p .btn:hover {
    background: #722830; /* Gold on hover for a more eye-catching effect */
}

/* Image Container Styling */
.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Footer Styling */
footer {
    background-color: #000000; /* Black, same as header */
    color: white;
    padding: 1rem 0;
    text-align: center; /* Center the text and other content inside the footer */
}

footer a {
    color: #FFFFFF; /* White for links */
    text-decoration: none;
}

footer a:hover {
    color: #DCA54A; /* Gold on hover for a richer effect */
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the contents horizontally */
    justify-content: center; /* Center the contents vertically */
}

footer .main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-bottom: 10px; /* Add some space between nav and copyright */
}

footer .main-nav ul li {
    margin: 0 15px;
}

footer .main-nav ul li a {
    color: #ffffff; /* White for links */
    text-decoration: none;
    font-size: 14px; /* Smaller font size for the footer menu links */
}

footer .main-nav ul li a:hover {
    color: #f8ba81; /* Gold on hover for a richer effect */
}

footer .copyright {
    text-align: center;
    margin-top: 10px; /* Space between the powered by logo and text */
    font-size: 12px; /* Smaller font size for the copyright text */
}

footer .copyright img {
    margin-top: 10px; /* Add spacing between the text and the image */
    max-width: 100%; /* Ensure the image is responsive */
    height: auto; /* Maintain the aspect ratio */
}

/* Align the hero text with the logo */
.hero-text {
    padding-left: 20px; /* Adjust this value to match the padding or margin of the logo */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.header-container {
    padding-left: 20px; /* Ensure this matches the padding used in .hero-text */
    padding-right: 20px;
}

.hero {
    background: #e2e1d5; /* Black background, same as header */
    color: white;
    padding: 5rem 0;
}

.hero-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-media {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image, .hero-video {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Hero Section */
.hero-text h1 {
    font-weight: bold;
    margin: 0.5rem 0;
    line-height: 1.1; /* Reduces space between the lines */
}

.hero-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
}

.btn-try-free {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #722830; /* Copper color for the button */
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-try-free:hover {
    background-color: #722830; /* Gold color on hover */
}

/* Background and padding for the contact-us and concerns sections */
.contact-us, 
.concerns {
    background-color: #ffffff; /* White background */
    padding: 50px 0; /* Top and bottom padding */
}

/* Flexbox container for the contact and concerns sections */
.contact-container, 
.concerns-container {
    display: flex;
    justify-content: space-between; /* Space out items equally */
    gap: 20px; /* Space between flex items */
    max-width: 1200px; /* Limit the container width */
    margin: 0 auto; /* Center the container */
}

/* Optional: Additional padding inside individual content areas */
.contact-us .contact-form,
.contact-us .contact-info,
.concerns-container .concerns {
    padding: 20px;
    background-color: #f9f9f9; /* Optional light grey background for contrast */
    border-radius: 8px; /* Rounded corners for modern look */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    flex: 1;
}

.contact-form h3,
.contact-info h3 {
    color: #722830; /* Gold color */
    margin-bottom: 20px;
    font-size: 28px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 250px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; /* fonts */
}

.form-group textarea {
    width: 95%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; /* fonts */
}

.honeypot {
    display: none;
}

.btn-submit {
    background-color: #722830;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn-submit:hover {
    background-color: #722830;
}

.contact-info {
    text-align: left;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-info .btn-booking {
    display: inline-block;
    background-color: #722830;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.contact-info .btn-booking:hover {
    background-color: #722830;
}

        #cookieConsent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #333;
            color: white;
            padding: 15px;
            text-align: center;
            display: none; /* Hidden by default */
        }

        #cookieConsent button {
            background-color: #DCA54A;
            color: white;
            border: none;
            padding: 10px 20px;
            margin-left: 10px;
            cursor: pointer;
        }

        #cookieConsent a {
            color: #722830;
            text-decoration: underline;
        }

        .progress-bar-container {
            margin-bottom: 10px;
            width: 100%;
            background-color: #e0e0e0;
            border-radius: 5px;
            height: 40px;
            text-align: center;
            color: white;
        }

        .progress-bar {
            height: 40px;
            background-color: #4CAF50;
            color: black;
            font-weight: bold;
            text-align: center;
            line-height: 40px; /* Vertically center the text */
            border-radius: 5px;
            transition: width 0.4s ease;
        }

        /* Container for map and info columns */
        .map-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        /* Left column for the map */
        .map-column {
            flex: 1;
            min-width: 300px;
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
        }

        #map {
            width: 100%;
            height: 500px;
            margin: 20px 0;
        }

        /* Right column for information */
        .info-column {
            flex: 1;
            min-width: 300px;
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
        }

        .info-column h3 {
            color: #722830;
        }

        .info-column ul {
            padding-left: 20px;
            list-style-type: disc;
        }

/* Form Button Styling */
.btn {
    background-color: #722830;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.btn:hover {
    background-color: #722830;
}

.btn.cancel {
    background-color: #777;
    margin-left: 10px;
}

.btn.cancel:hover {
    background-color: #555;
}

.form-group {
    margin-bottom: 20px;
}

.checkbox-group {
    display: flex;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 5px;
}

        /* Style for the social icons in the header */
        .header-social-icons a {
            color: #ffffff; /* White color for the icons */
            margin-right: 15px; /* Add some spacing between icons */
            text-decoration: none; /* Remove underline */
            font-size: 20px; /* Set icon size */
    }

    /* On hover, make sure the color remains white or add hover effect if desired */
     .header-social-icons a:hover {
    color: #f0f0f0; /* Slightly lighter white on hover, or you can keep it #ffffff */
   }

    .chatbot {
    width: 100%;
    padding: 20px;
    background-color: #e2e1d5;
    position: relative;
    }
    .chat-header {
    background-color: #00796b;
    padding: 10px;
    color: white;
    text-align: center;
    border-radius: 5px 5px 0 0;
    }
    .chat-content {
    padding: 20px;
    background-color: white;
    border: 1px solid #ddd;
    height: 300px;
    overflow-y: auto;
    border-radius: 0 0 5px 5px;
    }
    .chat-content p {
    margin-bottom: 10px;
    font-size: 1em;
    }

    /* Hide the menu toggle button on larger screens */
    .menu-toggle {
        display: none;
    }

/* Responsive Adjustments */

@media (max-width: 768px) {

    .hero {
        padding-top: calc(79px + 2rem); /* Adjust 79px to your header height */
    }

    .container {
        max-width: 100%; /* Use full width on mobile */
        margin: 0 auto; /* Center the container */
        padding-left: 10px; /* Reduce padding for smaller screens */
        padding-right: 10px; /* Ensure consistent padding on both sides */
    }

    /* General Two-Column Layout Adjustments */
    .hero-content, .contact-container, .other-two-column-sections {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-text, .hero-media, .contact-form, .contact-info {
        width: 100%; /* Ensure full width for stacked elements */
        margin-bottom: 20px; /* Space between stacked items */
    }

    /* Header and Menu */
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        transform: translateY(-20px);
        opacity: 0;
    }

    .main-nav.active ul {
        transform: translateY(0);
        opacity: 1;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        display: none;
        background: #ffffff;
        position: fixed;
        top: 60px;
        left: 0;
        z-index: 999;
    }

    .main-nav ul li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    .main-nav ul li a {
        width: 100%;
        padding: 10px;
        display: block;
    }

    .main-nav ul {
        background-color: #1B1B1B; /* Dark gray/black background for the menu */
        padding: 20px;
        border-radius: 5px;
    }

    .main-nav ul li a {
        color: #FFFFFF; /* White text color */
        font-size: 18px; /* Larger font size for readability */
        text-decoration: none;
        padding: 10px;
        display: block;
        border-radius: 5px;
    }

    .main-nav ul li a:hover {
        background-color: #D09A40; /* Copper color on hover */
        color: #ffffff; /* Text color change on hover */
    }

    .main-nav.active ul {
        display: flex;
    }

    .menu-toggle {
        display: block;
        background-color: #000000;
        color: #ffffff;
        padding: 10px 20px;
        font-size: 18px;
        width: 100%;
        text-align: left;
        margin-bottom: 10px; /* Adds some space below the toggle button */
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 998; /* Just below the menu */
    }

    .menu-overlay.active {
        display: block;
    }

    /* Footer Adjustments */
    footer {
        background-color: #000000;
        color: white;
        padding: 1rem 20px;
        text-align: left; /* Align content to the left */
        position: relative;
        bottom: 0;
        width: 100%;
    }

    footer .main-nav ul {
        flex-direction: column;
        text-align: left;
        margin-bottom: 10px;
    }

    footer .main-nav ul li {
        margin: 10px 0;
    }

    footer .copyright {
        margin-top: 20px;
        font-size: 12px;
    }

    /* Font and Image Scaling */
    body {
        font-size: 14px; /* Adjust base font size for smaller screens */
    }

    img {
        max-width: 100%;
        height: auto; /* Ensure images scale down */
    }

    /* Hide carousel controls on mobile */
    .testimonials-controls {
        display: none;
    }

    .hero-sub {
        background: #000000; /* Keep the background black */
        color: #FFFFFF; /* Ensure the text color is white for better contrast */
        margin-top: 0;
        padding: 2rem 1rem 3rem; /* Adjust padding to fit better on mobile */
        text-align: center; /* Center-align text on mobile for better readability */
    }

    .hero-sub-text {
        margin-top: 0;
        padding-left: 10px; /* Slight padding for text alignment */
        padding-right: 10px; /* Add padding-right to ensure proper spacing on both sides */
        line-height: 1.2; /* Slightly increase line-height for readability on smaller screens */
        font-size: 1.5rem; /* Reduce font size for mobile */
        font-weight: bold;
        color: #FFFFFF; /* White text for consistency */
    }

}

@media (max-width: 1024px) {
    footer {
        display: none;
    }
}


