
body {
    font-family: 'Roboto', sans-serif; /* Roboto for body and general text */
    background-color: #f5f5f5; /* Light gray background for the overall page */
    color: #333; /* Dark gray text */
    margin: 0; /* Ensure no default body margin */
    padding: 0; /* Ensure no default body padding */
}
/* H1 and H2 tags will now use Jost */
h1, h2 {
    font-family: 'Jost', sans-serif;
}
/* H3, H4, H5 tags explicitly use Roboto */
h3, h4, h5 {
    font-family: 'Roboto', sans-serif;
}
.section-header {
    border-bottom: 1px solid #ccc; /* Light gray border for section headers */
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}
/* Navigation Bar Styling */
header {
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    /* Tailwind's bg-white and shadow-sm are now conditionally applied by JS */
}
.header-transparent {
    background-color: rgba(255, 255, 255, 0); /* Fully transparent white */
    box-shadow: none;
}
.header-scrolled {
    background-color: #ffffff; /* Solid white background on scroll */
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); /* Shadow on scroll */
}

.nav-link {
    transition: color 0.2s ease-in-out;
    position: relative; /* Needed for ::after pseudo-element positioning */
    text-decoration: none; /* Ensure no default underline */
    font-family: 'Jost', sans-serif; /* Apply Jost font to nav links */
}
/* Color of nav links controlled by parent header class */
.header-transparent .nav-link {
    color: #ffffff; /* White text when header is transparent */
}
.header-scrolled .nav-link {
    color: #4a5568; /* Tailwind's gray-700 equivalent when scrolled */
}
/* Ensure hover/active still work and override base color */
.nav-link:hover {
    color: #C1AA7F; /* Accent color on hover for nav links */
}
.nav-link.font-semibold { /* Active link color */
    color: #C1AA7F;
}

/* Underline animation for nav links */
.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0); /* Start with no width */
    height: 2px;
    bottom: -3px; /* Position slightly below the text */
    left: 0;
    background-color: #C1AA7F; /* Accent color for the underline */
    transform-origin: bottom right;
    transition: transform 0.3s ease-out; /* Animation for appearing/disappearing */
}

.nav-link.font-semibold::after, /* Active link */
.nav-link:hover::after { /* Hover effect */
    transform: scaleX(1); /* Expand to full width */
    transform-origin: bottom left;
}

/* Page Hero Sections */
.page-hero {
    position: relative;
    min-height: 33vh; /* At least 1/3rd of viewport height */
    height: 67vh; /* Default height for consistency, can be overridden */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: #fff; /* White text for hero content */
    background-blend-mode: multiply; /* Helps overlay blend better with image */
    background-color: rgba(0, 0, 0, 0.5); /* Darker overlay for better visibility of white text */
    /* Ensure the hero starts at the very top, effectively extending under the fixed header */
    margin-top: -90px; /* Pulls the hero up to cover the space of the fixed header */
    padding-top: 90px; /* Pushes the hero-content down so it doesn't get hidden by the header */
    width: 100vw; /* Full viewport width */
    margin-left: calc(50% - 50vw); /* Centers it horizontally, making it full width */
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay to make text readable */
    z-index: 1; /* Ensure overlay is above image but below content */
}
.hero-content {
    position: relative;
    z-index: 10; /* Ensure content is above overlay */
    max-width: 800px;
    padding: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Text shadow for readability */
}
.hero-content h2 {
    font-family: 'Jost', sans-serif; /* Hero titles use Jost */
}
.hero-content p {
    font-family: 'Roboto', sans-serif; /* Hero descriptions use Roboto */
}

/* Specific styles for video hero */
.video-hero {
    position: relative;
    min-height: 33vh;
    height: 67vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
    margin-top: -90px;
    padding-top: 90px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}
.video-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0; /* Send video to background */
    transform: translate(-50%, -50%);
    background-size: cover;
    object-fit: cover; /* Ensure video covers the entire area */
}
.video-hero .hero-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Tint for visibility */
    z-index: 1;
}


.placeholder-image {
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 500;
    text-align: center;
    height: 200px;
    border-radius: 0.5rem;
    overflow: hidden;
}
.scroll-container {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
}
.scroll-item {
    display: inline-block;
    width: 350px;
    margin-right: 1.5rem;
    vertical-align: top;
}
.icon-placeholder {
    width: 120px;
    height: 120px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #666;
    margin: 0 auto 1rem;
}
.svg-icon {
    width: 36px;
    height: 36px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-right: 0.5rem;
    vertical-align: middle;
}
.cta-button {
    background-color: #000;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.2s ease-in-out;
    border: 1px solid #000;
}
.cta-button:hover {
    background-color: #C1AA7F;
    border-color: #C1AA7F;
}
.footer-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-right: 0.5rem;
    vertical-align: middle;
}
.page-section {
    display: none;
}
.page-section.active {
    display: block;
}
/* Apply Jost font to footer text */
footer, footer p, footer h3, footer a {
    font-family: 'Jost', sans-serif;
}

/* Contact Form Specific Styles */
.contact-form-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}
.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container input[type="tel"],
.contact-form-container textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #d1d5db; /* Tailwind gray-300 */
    border-radius: 0.375rem; /* Tailwind rounded-md */
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.contact-form-container input[type="text"]:focus,
.contact-form-container input[type="email"]:focus,
.contact-form-container input[type="tel"]:focus,
.contact-form-container textarea:focus {
    border-color: #C1AA7F; /* Accent color on focus */
    box-shadow: 0 0 0 3px rgba(193, 170, 127, 0.3); /* Soft accent glow */
}
.contact-form-container textarea {
    min-height: 100px;
    resize: vertical;
}
.contact-info-block {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #eee;
    text-align: left;
}
.contact-info-block h3 {
    color: #2d3748; /* Tailwind gray-800 */
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.contact-info-block p {
    margin-bottom: 0.5rem;
    color: #4a5568; /* Tailwind gray-700 */
}
.contact-form-socials a {
    color: #718096; /* Tailwind gray-600 */
    transition: color 0.2s ease-in-out;
}
.contact-form-socials a:hover {
    color: #C1AA7F; /* Accent color on hover */
}
.form-send-button {
    background-color: #1a202c; /* Tailwind gray-900 */
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.2s ease-in-out;
    border: none;
    cursor: pointer;
    width: auto;
    align-self: flex-start; /* Align button to start */
}
.form-send-button:hover {
    background-color: #C1AA7F; /* Accent color on hover */
}
