﻿:root {
    --bg-clr-darkest: #2e323f;
    --bg-clr-dark: #3b4050;
    --bg-clr-light: #f1f1f1;
    --primary-clr-dark: #6f737f;
    --primary-clr-light: #ffffff;
    --primary-clr-neutral: #a59678;
    --section-paddings: 5em 0;
}


body {
    margin: 0;
    padding: 0;
    height: 100vh; /* Set body height to full viewport height */
    display: flex;
    flex-direction: column;
}

header, footer {
    padding: 10px 20px;
}



/* Header Styles */

p {
    font-family: 'Josefin Sans', sans-serif;
}

.col-wrap {
    display: flex;
}

.col-1 {
    width: 20%;
}

    .col-1 img {
        height: 150px;
    }

.col-2 {
    width: 80%;
}

    .col-2 p {
        text-align: left;
        font-family: 'Josefin Sans', sans-serif;
        padding-top: 30px;
    }

span.heading {
    font-size: 26px;
    color: #ffffff;
}

span.subheading {
    font-size: 18px;
    color: #ffffff;
}

.right-heading p {
    font-size: 22px;
    padding-top: 50px;
    letter-spacing: 5px;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
}

.margin-top-30px {
    margin-top: 15px;
}

p.subheading {
    font-size: 16px;
}


.header {
    background-color: var(--bg-clr-dark);
    padding: 1.5em 0;
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.header--alignment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
}

/* Media Queries */
@media (min-width: 599px) {
    .header--alignment {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width:370px) {
    .table {
        overflow-x: auto;
        display: block;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
    }



    /* Make the logo image responsive */
    .logo-img {
        width: 100%;
        max-width: 200px; /* Limit maximum width for better scaling */
    }

    /* Adjust font sizes and margins for smaller screens */
    span.heading {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .col-wrap {
        flex-direction: column;
    }

    .col-1 {
        width: 100%; /* Set col-1 to full width */
        display: flex;
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
    }

        .col-1 img {
            max-width: 100%; /* Ensure image does not exceed container width */
        }

    .col-2 {
        width: 100%; /* Set col-2 to full width */
    }

    .heading,
    .subheading {
        text-align: justify; /* Justify heading and sub-heading text */
    }
}


/*nav*/

.navbar {
    background-color: var(--bg-clr-darkest);
    padding: 1em 0;
    width: 95%;
    margin-left: 2.5%;
}

    .navbar .container {
        display: flex;
        justify-content: center;
        width: 85%;
    }

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

    .nav-links li {
        margin-right: 20px;
    }

    .nav-links a {
        text-decoration: none;
        color: #ffffff;
        font-size: 1.125rem;
    }

        .nav-links a:hover {
            color: #a59678; /* Change color on hover */
        }

/* Submenu styles */
.submenu {
    display: none;
    position: absolute;
    background-color: var(--bg-clr-darkest); /* Same as navbar background */
    padding: 10px;
    list-style: none; /* Remove bullet points */
    border-top: 1px solid #ffffff; /* Add a border above submenu items */
    z-index: 1; /* Ensure submenu appears above other content */
}

.nav-links li:hover .submenu {
    display: block;
}

.submenu li {
    margin: 0;
}

.submenu a {
    color: #ffffff;
}

    .submenu a:hover {
        color: #a59678; /* Change color on hover */
    }


/* Responsive styles */
/* Responsive styles */
@media (max-width: 768px) {
    .navbar {
        padding: 1em 0;
    }

        .navbar .container {
            width: 100%;
        }

    .nav-links {
        display: flex;
        flex-direction: column; /* Display nav links vertically */
        align-items: center;
    }

        .nav-links li {
            margin: 10px 0; /* Adjust margin for better spacing */
        }

    .submenu {
        display: none; /* Hide submenus by default */
        background-color: var(--bg-clr-darkest); /* Same as navbar background */
        padding: 10px;
        z-index: 1; /* Ensure submenu appears above other content */
        list-style: none; /* Remove bullet points */
        border-top: 1px solid #ffffff; /* Add a border above submenu items */
    }

    .nav-links li:hover .submenu {
        display: block; /* Display submenus on hover */
        position: relative; /* Ensure submenus are positioned relative to their parent items */
    }

    .submenu li {
        margin: 0;
    }

    .submenu a {
        color: #ffffff;
        display: block; /* Ensure submenu links take up full width */
        padding: 5px 0; /* Add padding for better spacing */
    }

        .submenu a:hover {
            color: #a59678; /* Change color on hover */
        }
}


.guest-rel-select select {
    height: auto;
    min-height: 30px;
}

/* landing page */

.landingpage {
    background-color: #CBE7E8;
    padding: 2em 0;
    width: 95%;
    margin: 0 auto;
}

.title {
    font-family: "Oswald", sans-serif;
    font-size: clamp(2rem, 7vw, 5.625rem);
    color: var(--primary-clr-light);
}

.half-title-clr {
    color: var(--primary-clr-neutral);
}

.lp-para {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--primary-clr-light);
}

@media (min-width: 768px) {
    .lp-alignment {
        display: flex;
        gap: 1em;
        align-items: flex-end;
    }
}

/* first section */

.first-section {
    background-color: #deedea;
    padding: 1.5em 0;
    width: 95%;
    margin: 0 auto;
}


.fs-heading {
    font-family: "Oswald", sans-serif;
    color: var(--primary-clr-neutral);
    font-size: 1.875rem;
}

.fs-para {
    color: var(--bg-clr-darkest);
    font-size: 1.125rem;
}

@media (min-width: 767px) {
    .fs-heading,
    .fs-para {
        text-align: center;
    }

    .fs-alignment {
        display: flex;
        flex-wrap: wrap;
        gap: 2.5em;
    }

        .fs-alignment > * {
            flex: 1;
        }
}

.footer {
    background-color: var(--bg-clr-dark); /* Set the background color for the footer */
    color: #ffffff; /* Set text color */
    padding: 20px 0; /* Add padding to the footer */
}

.footer-container {
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow items to wrap onto the next line */
    justify-content: space-around; /* Evenly distribute sections horizontally */
    align-items: flex-start; /* Align items to the top */
}

.map-section,
.contact-section,
.about-section {
    width: calc(33.33% - 20px); /* Set width for each section with some spacing */
    margin: 10px; /* Add margin between sections */
}

    .map-section h2,
    .contact-section h2,
    .about-section h2 {
        border-bottom: 1px solid #ffffff; /* Add border under section titles */
    }

    .map-section #map {
        height: 50px; /* Set height for the map */
    }

/* Media query for smaller screens */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack sections vertically on smaller screens */
        align-items: center; /* Center align sections */
    }

    .map-section,
    .contact-section,
    .about-section {
        width: calc(100% - 20px); /* Set width to full width on smaller screens with some spacing */
        margin: 10px 0; /* Add margin between sections */
    }

        .map-section #map {
            height: 300px; /* Increase map height on smaller screens */
        }
}
