/* Basic Reset & General Styles */
body, h1, h2, h3, p, ul, li, a, form, input, textarea, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    color: #E0D2B3;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(85deg, rgb(64, 61, 122) 8%, rgb(0, 0, 0) 51%);
    line-height: 1.6;
    font-size: 18px; /* Base font size from user file */
    min-height: 100vh;
    overflow-x: hidden;
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack header, main, footer */
}
body.mobile-menu-open {
    overflow-y: hidden;
}
main {
    flex-grow: 1; /* Allow main content to take up available space */
}


h1, h2, h3 {
    font-family: 'Instrument Serif', serif;
    font-weight: normal;
    text-transform: uppercase;
    color: rgb(193, 164, 117);
    font-style: italic;
}

img.logo {
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
    padding-top:10px;
}
img.main-header-logo {
    max-height: 150px;
    max-width: 90%;
    width: 450px;
    margin-left: auto;
    margin-right: auto;
}
img.footer-logo {
    /* filter: brightness(0) invert(1); */ /* Removed filter */
    max-height: 50px;
    max-width: 200px;
}


a {
    text-decoration: none;
    color: inherit;
}
a:hover {
    color: #FFFFFF; /* General link hover */
}

.container {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.content-section {
    padding-top: 40px;
    padding-bottom: 40px;
}
.content-section, footer, .nav-logo-section, .hero-section {
    width: 100%;
    box-sizing: border-box;
}


.content-section h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
    text-align: left;
}
.text-align-right {
    text-align: right !important;
}


.dark-bg {
     background-color: rgba(0, 0, 0, 0.3);
}

/* --- Navigation & Logo Section --- */
.nav-logo-section {
    padding-top: 10px;
    padding-bottom: 15px;
    position: relative;
    z-index: 10;
}

.nav-container {
    position: relative;
    z-index: 10;
}

nav {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    min-height: 40px;
    /* justify-content set in media queries */
}

/* User specific position overrides */
@media (min-width: 768px) {
    .main-header-logo-container {
        margin-top: -55px !important;
    }

    .nav-container {
        top:60px !important;
    }
}

.main-header-logo-container {
    padding-top: 20px;
    padding-bottom: 10px;
    text-align: center;
    display: block;
    position: relative;
    z-index: 5;
    /* margin-top: 0; */ /* Base margin-top removed, handled by user override */
}
.main-header-logo {
    display: inline-block;
}


/* Desktop Navigation Styles */
.desktop-nav-left, .desktop-nav-right {
    display: none;
    align-items: center;
}
.desktop-nav-left { flex: 1; justify-content: flex-start; }
.desktop-nav-right { flex: 1; justify-content: flex-end; }

/* Mobile Header Specifics */
.mobile-top-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%; 
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px; height: 25px;
    background: transparent; border: none; 
    padding: 0;
    z-index: 10001;
    position: relative;
}
.hamburger-bar {
    width: 100%; height: 3px; background-color: #E0D2B3;
    border-radius: 2px; transition: all 0.3s ease-in-out;
}
.hamburger-menu.active .hamburger-bar { background-color: #E0D2B3; }
.hamburger-menu.active .hamburger-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger-menu.active .hamburger-bar:nth-child(2) { opacity: 0; }
.hamburger-menu.active .hamburger-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Styles for #nav-links (Mobile Overlay & Desktop Inline) */
#nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    /* Mobile Overlay Styles (Default - hidden) */
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(26, 20, 45, 0.98);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s;
}
#nav-links.active { /* Mobile Overlay Active State */
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 0.3s ease-in-out, visibility 0s linear 0s;
}

#nav-links li { /* Mobile list item default */
    width: auto;
    text-align: center;
    margin: 15px 0;
    border-bottom: none;
}
#nav-links li a { /* Mobile link default */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    width: auto;
    color: #E0D2B3;
    font-size: 1.3em;
    font-weight: bold;
}
#nav-links li a:hover {
    background-color: transparent;
    color: #FFFFFF;
}
.mobile-only-nav-item { display: list-item; }
.mobile-menu-cta {
    display: inline-block; width: auto;
    margin: 15px 0;
    text-align: center;
    padding: 10px 10px; /* Adjusted padding */
    font-size: 1.1em;
}
#nav-links li a.social-icon-link {
    padding: 10px 0;
    flex-direction: column;
    align-items: center;
}
#nav-links li a .social-icon-circle {
    margin-right: 0;
    margin-bottom: 0;
}


.social-icon-link { display: inline-flex; align-items: center; }
.social-icon-circle {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    margin-right: 15px;
    transition: background-color 0.3s;
}
.social-icon-circle:hover {
    abackground-color: #c1a475;
    aborder-color: #c1a475;
}
.social-icon-svg {
    width: 32px;
    height: 32px;
    fill: #E0D2B3; /* Default color */
    vertical-align: middle;
    transition: fill 0.3s; /* Smooth color transition */
}
.social-icon-circle:hover .social-icon-svg {
    fill: white;
}


.cta-button {
    background-color: transparent; border: 1px solid #E0D2B3; color: #E0D2B3;
    padding: 8px 15px; text-transform: uppercase; font-weight: bold;
    font-family: 'Lato', sans-serif;  transition: background-color 0.3s, color 0.3s;
    border-radius: 3px; font-size: 0.9em; font-style: italic;
}

@media (max-width: 767px) {
    .cta-button {
        padding: 10px 20px !important;
    }
}

.cta-button:hover { background-color: #E0D2B3; color: #1A142D; }

/* --- Hero Section --- */
.hero-section {
    background: none;
    padding: 0;
    position: relative;
    color: #FFFFFF;
    overflow: hidden;
    min-height: 60vh;
    max-height: 620px;;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}
.hero-content h1 {
    font-size: 2.8em;
    padding-bottom:5px;
    margin-bottom: 0px;
    line-height: 40px;;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}
.hero-content p { font-size: 1.6em; color: #E0D2B3; font-family: 'Lato', sans-serif; }

/* --- Static Page Content Styles --- */
.static-page-content {
    padding: 40px 0; /* Adjust padding as needed */
    min-height: 60vh; /* Ensure some minimum height */
}
.static-page-content .container {
    background-color: rgba(0,0,0,0.2); /* Optional subtle background for readability */
    padding: 30px;
    border-radius: 5px;
}
.static-page-content h1, /* If you add H1 back */
.static-page-content h2 {
    margin-bottom: 25px;
    text-align: left;
}
.static-page-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.4em;
}
.static-page-content p,
.static-page-content li {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #C5B89E; /* Use slightly darker text color */
}
.static-page-content ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}
.static-page-content strong {
    font-weight: bold;
    color: #E0D2B3; /* Make strong text stand out */
}


/* --- Show Section Grid & About Us Grid --- */
.show-section-grid, .about-us-section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.show-column, .about-us-column {
    overflow: hidden;
}
.show-column img, .about-us-column img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 5px;
    background-color: rgba(255,255,255,0.05);
    display: block;
}
.show-column h3, .about-us-column h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
    margin-top: 15px;
}
.show-column p, .about-us-column p { margin-bottom: 15px; color: #C5B89E; }
.show-column .cta-button-outline, .about-us-column .cta-button-outline { margin-top: 10px; }


.cta-button-outline {
    background-color: transparent; border: 1px solid #E0D2B3; color: #E0D2B3;
    padding: 10px 20px; text-transform: uppercase; font-weight: bold;
    font-family: 'Lato', sans-serif;  display: inline-block;
    transition: background-color 0.3s, color 0.3s; border-radius: 3px;
    font-size: 0.9em; font-style: italic;
}
.cta-button-outline:hover { background-color: #E0D2B3; color: #1A142D; }

/* --- FAQ Section --- */
.faq-list .faq-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E0D2B3;
}
.faq-list .faq-item:last-child { border-bottom: none; margin-bottom: 0; }
.faq-list .faq-item h3 {
    font-size: 1.3em;
    margin-bottom: 8px;
}
.faq-list .faq-item p { color: #C5B89E; font-size: 0.95em; }

/* --- Locations Section --- */
.locations-list .location-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    padding: 15px 0;
    border-bottom: 1px solid #E0D2B3;
}
.location-city-details {
    margin-bottom: 5px;
    flex-grow: 1;
    margin-right: 15px;
    min-width: 200px;
}
.location-city-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.location-flag {
    width: 24px;
    height: auto;
    margin-right: 10px;
    flex-shrink: 0;
}

.locations-list .location-item:last-child { border-bottom: none; }
.locations-list .location-item h3 { /* City Name */
    font-size: 1.4em;
    margin-bottom: 0;
}
.locations-list .location-item p { /* Details */
    color: #C5B89E;
    font-size: 0.9em;
    padding-left: 34px;
    margin-top: 2px;
}
.small-cta {
    padding: 8px 15px;
    font-size: 0.85em;
    
    flex-shrink: 0;
}

a{
    cursor: hand;
}

/* --- Footer Section --- */
footer { padding-top: 40px; padding-bottom: 20px; }
footer h2 {
    margin-bottom: 25px;
}
form label { display: block; margin-bottom: 6px; font-size: 0.9em; color: #C5B89E; font-family: 'Lato', sans-serif; }
form input[type="text"], form input[type="email"], form textarea {
    width: 100%; padding: 10px; margin-bottom: 15px; background-color: rgba(42, 35, 66, 0.8);
    border: 1px solid rgba(58, 48, 90, 0.7); color: #E0D2B3; border-radius: 3px; font-family: 'Lato', sans-serif; font-size: 1em;
}
form input::placeholder, form textarea::placeholder { color: #8e836a; }
form textarea { min-height: 100px; resize: vertical; }
form button[type="submit"] { margin-bottom: 10px; }

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 3px;
    font-size: 0.9em;
    text-align: center;
}
.form-message.success {
    background-color: rgba(193, 164, 117, 0.2);
    color: rgb(193, 164, 117);
    border: 1px solid rgb(193, 164, 117);
}
.form-message.error {
    background-color: rgba(255, 0, 0, 0.1);
    color: red;
    border: 1px solid red;
}


.footer-bottom { display: flex; flex-direction: column; align-items: center; text-align: center; padding-top: 20px; border-top: 1px solid rgba(58, 48, 90, 0.5); }
.footer-links { margin-bottom: 15px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; }
.footer-links a { margin: 5px 8px; color: #C5B89E; font-size: 0.85em; font-family: 'Lato', sans-serif; }
.footer-links .social-icon-circle { width: 28px; height: 28px; margin-left: 8px; }
.footer-links .social-icon-svg { width: 24px; height: 24px; }

.footer-contact p { font-size: 0.85em; color: #C5B89E; margin-bottom: 5px; font-family: 'Lato', sans-serif; }
.footer-contact p:first-child {
    font-weight: bold;
    margin-bottom: 8px;
    font-family: 'Instrument Serif', serif;
}

/* --- Modal Styles --- */
.modal {
    display: none; position: fixed; z-index: 2000;
    left: 0; top: 0; width: 100%; height: 100%;
    overflow: auto; background-color: rgba(0,0,0,0.7);
    padding-top: 60px;
}
.modal-content {
    background-color: #1A142D; color: #E0D2B3;
    margin: 5% auto; padding: 30px; border: 1px solid #3A305A;
    width: 80%; max-width: 500px; border-radius: 5px;
    position: relative; box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.modal-content h3 { margin-top: 0; margin-bottom: 15px; }
.modal-content p { margin-bottom: 20px; font-size: 0.95em; color: #C5B89E; }
.modal-content form label { display: block; margin-bottom: 8px; font-size: 0.9em; }
.modal-content form input[type="email"] {
    width: 100%; padding: 10px; margin-bottom: 20px; background-color: #2A2342;
    border: 1px solid #3A305A; color: #E0D2B3; border-radius: 3px;
}
.modal-content form button[type="submit"] { display: block; margin: 0 auto; }
.modal-close-button {
    color: #aaa; float: right; font-size: 28px; font-weight: bold;
    position: absolute; top: 10px; right: 20px;
}
.modal-close-button:hover, .modal-close-button:focus { color: #E0D2B3; text-decoration: none;  }


/* --- Responsive Design --- */
/* Mobile Styles */
@media (max-width: 767px) {
    .container {
        width: 95%;
        padding-left: 10px;
        padding-right: 10px;
    }
    .main-header-logo-container {
         margin-top: -40px;
    }
    img.main-header-logo {
        max-height: 100px;
        max-width: 85%;
    }
    .desktop-nav-left, .desktop-nav-right {
        display: none !important;
    }
    .mobile-top-bar { display: flex; }
    .hamburger-menu { display: flex; }
    #nav-links .mobile-only-nav-item { display: list-item; }

    .hero-content {
        padding-top: 70px; /* Keep mobile padding */
    }
    .hero-content h1 { font-size: 3em; }
    .content-section h2 { font-size: 2em; }
    .about-us-column h3, .faq-list .faq-item h3, .locations-list .location-item h3 {
        font-size: 1.4em;
    }

    footer h2 { font-size: 2em; }
    .modal-content { width: 90%; padding: 20px; }

    .locations-list .location-item p { /* Details */
       padding-left: 0; /* Remove indent on mobile if wrapping */
    }
    .small-cta {
        width: 100%; /* Make button full width when wrapped */
        text-align: center; /* Center text in button */
        margin-top: 10px; /* Add space when wrapped */
    }

}


/* Desktop Styles (md and up) */
@media (min-width: 768px) {
    .container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    .content-section { padding-top: 60px; padding-bottom: 60px; }
    .content-section h2 { font-size: 3em; margin-bottom: 40px; }

    .nav-logo-section {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .nav-container {
        z-index: 10;
        position: relative;
        /* top: 0; */ /* User override below */
    }
     /* User specific position overrides */
    .main-header-logo-container {
        margin-top: -55px !important;
        z-index: 5;
        padding-top: 0;
    }
    .nav-container {
        top:60px !important;
    }

    .hero-section {
        padding: 120px 0;
        min-height: 70vh;
    }
    .hero-content {
        z-index: 2;
        padding-top: 0;
        padding-bottom: 0;
    }


    .mobile-top-bar { display: none; }
    .hamburger-menu { display: none; }
    .desktop-nav-left, .desktop-nav-right { display: flex; }
    nav { justify-content: space-between; }

    .desktop-nav-left {
        display: flex;
        align-items: center;
    }
    #nav-links {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        align-items: center !important;
        width: auto !important; height: auto !important;
        background-color: transparent !important; padding: 0 !important; border-top: none !important;
        opacity: 1 !important; visibility: visible !important;
        transition: none !important;
        z-index: auto;
        margin: 0;
    }


    #nav-links li {
        width: auto;
        text-align: left;
        margin: 0 15px;
        border-bottom: none;
    }
     #nav-links li a {
        display: inline-block;
        padding: 5px 0;
        width: auto;
        font-size: 0.9em;
        font-weight: bold;
        color: #E0D2B3;
    }
     #nav-links li a:hover {
        background-color: transparent;
        color: #FFFFFF;
    }

    #nav-links .mobile-only-nav-item { display: none !important; }


    .social-icon-circle { width: 32px; height: 32px; }
    .social-icon-svg { width: 32px; height: 32px; }
    .cta-button { padding: 10px 20px; font-size: 1em; }

    .hero-content h1 { font-size: 4em; }
    .hero-content p { font-size: 1.8em; }

    .show-section-grid, .about-us-section-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .about-us-column h3 { font-size: 1.8em; margin-bottom: 15px; }
    .show-column h3 { 
        font-size: 2.2em;
    }

    .cta-button-outline { padding: 12px 25px; font-size: 1em; }

    .faq-list .faq-item { margin-bottom: 30px; padding-bottom: 20px; }
    .faq-list .faq-item h3 { font-size: 1.4em; margin-bottom: 10px; }

    .locations-list .location-item {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-end;
    }
    .location-city-details {
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .locations-list .location-item p { /* Details */
       padding-left: 34px;
       margin-top: 2px;
    }
    .small-cta {
        align-self: flex-end;
        margin-top: 0;
        width: auto;
        text-align: left;
    }


    footer { padding-top: 60px; padding-bottom: 20px; }
    footer h2 { font-size: 3em; margin-bottom: 30px; }
    form label { margin-bottom: 8px; }
    form input[type="text"], form input[type="email"], form textarea { padding: 12px; margin-bottom: 20px; }
    form textarea { min-height: 120px; }
    form button[type="submit"] { margin-bottom: 10px; }


    .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; text-align: left; padding-top: 30px; }
    .footer-logo.logo { margin-bottom: 0; margin-right: auto; max-height: 60px; }
    .footer-links { margin-bottom: 0; order: 2; flex-wrap: nowrap; }
    .footer-links a { margin: 0 10px; font-size: 0.9em; }
    .footer-links .social-icon-circle { margin-left: 10px; }
    .footer-contact { order: 3; text-align: right; }
    .footer-contact p { font-size: 0.9em; }
    .footer-contact p:first-child { margin-bottom: 10px; }
}

@media (min-width: 1024px) {
    #nav-links li { margin: 0 20px; }
    .hero-content h1 { font-size: 4.5em; }
    .hero-content p { font-size: 1.8em; }
}



/* --- Footer Section --- */

/* Adjust the container for contact info if needed (e.g., text alignment) */
.footer-contact {
    /* Existing styles */
    text-align: center; /* Center lines on mobile */
}

/* Style for each contact line paragraph */
.footer-contact-item {
    /* Remove display: flex if previously added */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    margin-bottom: 8px;
    line-height: 1.4; /* Adjust line height for icon alignment */
    font-size: 0.85em; /* Keep font size consistent */
    color: #C5B89E;
    margin-right: 6px;     /* Space after icon */

}

/* Style for the inline contact icons (phone/email) */
.contact-icon-svg {
    display: inline-block; /* Make SVG inline */
    width: 18px;           /* Icon size */
    height: 18px;
    fill: currentColor;    /* Use parent text color */
    vertical-align: -2px;  /* Fine-tune vertical alignment with text */
    flex-shrink: 0;        /* Prevent shrinking if flex is used higher up */
}

/* Ensure links and spans within the item flow correctly */
.footer-contact-item a,
.footer-contact-item span {
    color: #C5B89E;
    font-size: inherit;
    vertical-align: middle; /* Helps align text with icon */
}
.footer-contact-item a:hover {
    color: #FFFFFF;
}


/* --- Responsive Design --- */
/* Desktop Styles (md and up) */
@media (min-width: 768px) {
    .footer-contact {
        text-align: right; /* Align text right on desktop */
    }
    #faq h2 {
        text-align: right;
    }
    .footer-contact-item {
       /* No justify-content needed as text-align handles it */
       /* justify-content: flex-end; */
    }
}

.footer-contact-link-text {
    margin-left:10px;
}

