:root {
    --primary-color: #14689c;
    --secondary-color: #0056b3;
    --light-bg: #f8f9fa;
    --dark-bg: #343a40;
    --text-dark: #212529;
    --text-light: #6c757d;
    --white: #ffffff;
    --black: #000000;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 76px; /* Account for fixed navbar */
}

/* Navigation Styles */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 35px;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.dropdown-item:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    background-color: var(--white);
    padding: 0;
    margin-top: 0;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Video Section */
.video-section {
    background-color: var(--white);
    padding: 1rem 0 3rem 0;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
                url('https://assets.softr-files.com/applications/26b979db-2772-4cf2-b3a4-f6bd6e620ab4/assets/771abec5-cf6c-4051-bebc-e11194d8cbec.jpeg') center/cover;
    padding: 8.4rem 0;
    position: relative;
    overflow: hidden;
}


.cta-background {
    position: relative;
    z-index: 2;
}

.cta-content {
    padding: 2rem 0;
}

.btn-cta {
    background-color: var(--white);
    color: var(--black);
    border: 3px solid var(--primary-color);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--white);
}

/* Additional Hero Section */
.additional-hero-section {
    background-color: var(--white);
    padding: 0;
    margin-top: 0;
}

.additional-hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.additional-hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Venues Section */
.venues-section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.search-container {
    margin-bottom: 1rem;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-input {
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--text-dark);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(20, 104, 156, 0.25);
    background-color: var(--white);
    color: var(--text-dark);
    outline: none;
}

.search-input::placeholder {
    color: var(--text-light);
    font-weight: 400;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1rem;
    pointer-events: none;
}

.filter-container {
    margin-bottom: 3rem;
}

.filter-dropdown-wrapper {
    min-width: 250px;
}

/* Container width for large screens */
@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px;
    }
}

.filter-dropdown {
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.filter-dropdown:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(20, 104, 156, 0.25);
    background-color: var(--white);
    color: var(--primary-color);
}

.venue-item {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-img-wrapper {
    overflow: hidden;
    height: 200px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.venue-item .card-body {
    padding: 1.5rem;
}

.venue-item .card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.venue-item .card-text {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.venue-item .card-text.location {
    color: var(--text-dark);
    font-weight: 500;
}

.venue-item .card-text.email a {
    color: var(--primary-color);
    text-decoration: none;
}

.venue-item .card-text.email a:hover {
    text-decoration: underline;
}


.btn-load-more {
    background-color: var(--white);
    color: var(--black);
    border: 3px solid var(--primary-color);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 250px;
    text-align: center;
}

.btn-load-more:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--white);
}

/* CTA Video Section */
.cta-video-section {
    background-color: var(--white);
    padding: 80px 0;
}

.cta-video-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.cta-video-text {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-video-wrapper video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .navbar.scrolled {
        padding: 0.5rem 0;
    }

    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .btn-primary {
        width: 90%;
        margin: 1rem auto 0.5rem auto;
        display: block;
    }

    .video-section {
        padding: 0.5rem 0 2rem 0;
    }

    .video-wrapper {
        max-width: 100%;
        margin: 0 15px;
        border-radius: 8px;
    }

    .video-wrapper video {
        border-radius: 8px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .btn-cta {
        font-size: 1rem;
        padding: 0.875rem 2rem;
        width: 90%;
        text-align: center;
    }

    .dropdown-menu {
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        margin-top: 0;
    }

    .dropdown-item {
        padding: 0.75rem 1.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .dropdown-item:hover {
        background-color: var(--primary-color);
        color: var(--white);
    }

    .venues-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .search-input-wrapper {
        width: 100%;
    }

    .filter-dropdown-wrapper {
        min-width: 200px;
        width: 100%;
        max-width: 300px;
    }

    .card-img-wrapper {
        height: 180px;
    }

    .venue-item .card-body {
        padding: 1rem;
    }

    .btn-load-more {
        min-width: 200px;
        width: 100%;
        max-width: 300px;
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }

    .cta-video-section {
        padding: 60px 0;
    }

    .cta-video-title {
        font-size: 2rem;
        text-align: center;
    }

    .cta-video-text {
        font-size: 1rem;
        text-align: center;
        padding: 0 1rem;
    }

    .cta-video-wrapper {
        border-radius: 8px;
    }

    .cta-video-wrapper video {
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .btn-cta {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
        width: 95%;
    }

    .cta-section {
        padding: 40px 0;
    }

}

/* Additional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading Animation */
.video-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    border: 3px solid rgba(20, 104, 156, 0.3);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper.loading::before {
    opacity: 1;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Utility Classes */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.dropdown-item:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .video-section,
    .cta-section {
        display: none !important;
    }

    .hero-section {
        page-break-inside: avoid;
    }
}