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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #ff6b35;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    gap: 1rem;
    min-width: 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 1;
    min-width: 0;
}

.nav-brand:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.nav-brand-text {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--primary-color);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-style: italic;
    white-space: nowrap;
    line-height: 1;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    animation: fadeInUp 1s ease;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    transition: var(--transition);
    border-radius: 50%;
    background: transparent;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--secondary-color);
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-3px) scale(1.1);
}

.social-icon:hover svg {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-menu > li > a:hover {
    color: var(--secondary-color);
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu > li > a:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: var(--transition);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    color: var(--secondary-color);
    background: var(--bg-light);
    border-left-color: var(--secondary-color);
}

.dropdown-menu a::after {
    display: none;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    flex-shrink: 0;
    min-width: 30px;
    padding: 5px;
    margin-left: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 100px 20px 40px;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    font-weight: 400;
    font-family: 'League Gothic', sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.7rem;
    margin-top: 0;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-family: 'Barlow Semi Condensed', sans-serif;
    opacity: 0.95;
    font-style: italic;
}

.btn-cta {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 300;
    font-size: 1.33rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.5;
}

.btn-cta:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.mute-btn {
    position: absolute;
    top: 90px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: var(--transition);
}

.page-header .mute-btn {
    top: 90px;
    right: 20px;
    z-index: 1000 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: absolute !important;
}

.mute-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.mute-btn svg {
    width: 24px;
    height: 24px;
}

.volume-slider {
    position: absolute;
    top: calc(90px + 50px + 2px);
    right: calc(20px + 25px);
    width: 100px;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    outline: none;
    z-index: 11;
    transform: rotate(-90deg) translateX(-50px);
    transform-origin: right center;
    margin: 0;
    touch-action: pan-x;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: auto;
}

.page-header .volume-slider {
    top: calc(90px + 50px + 2px);
    right: calc(20px + 25px);
    z-index: 11;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

@media (max-width: 768px) and (orientation: portrait) {
    .hero-logo {
        max-width: 250px;
        margin-bottom: 0.75rem;
    }

    .volume-slider {
        top: calc(75px + 45px + 2px);
        right: calc(15px + 22.5px);
        width: 80px;
        transform: rotate(-90deg) translateX(-40px);
        transform-origin: right center;
    }

    .page-header .mute-btn {
        top: 75px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .page-header .volume-slider {
        top: calc(75px + 45px + 2px);
        right: calc(15px + 22.5px);
        width: 80px;
        transform: rotate(-90deg) translateX(-40px);
        transform-origin: right center;
    }
}

@media (orientation: landscape) and (max-height: 600px) {
    .hero-logo {
        max-width: 200px;
        margin-bottom: 0.75rem;
    }

    .hero-description {
        margin-top: 0;
        margin-bottom: 1.25rem;
    }

    .volume-slider {
        top: calc(70px + 40px + 2px);
        right: calc(15px + 20px);
        width: 80px;
        transform: rotate(-90deg) translateX(-40px);
        transform-origin: right center;
    }

    .page-header .mute-btn {
        top: 70px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .page-header .volume-slider {
        top: calc(70px + 40px + 2px);
        right: calc(15px + 20px);
        width: 80px;
        transform: rotate(-90deg) translateX(-40px);
        transform-origin: right center;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .hero-logo {
        max-width: 150px;
        margin-bottom: 0.6rem;
    }

    .hero-description {
        margin-top: 0;
        margin-bottom: 0.8rem;
    }

    .volume-slider {
        top: calc(65px + 38px + 2px);
        right: calc(12px + 19px);
        width: 70px;
        transform: rotate(-90deg) translateX(-35px);
        transform-origin: right center;
    }

    .page-header .mute-btn {
        top: 65px;
        right: 12px;
        width: 38px;
        height: 38px;
    }

    .page-header .volume-slider {
        top: calc(65px + 38px + 2px);
        right: calc(12px + 19px);
        width: 70px;
        transform: rotate(-90deg) translateX(-35px);
        transform-origin: right center;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Special grid layout for venues section (4 items) */
section#venues .services-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 1200px) {
    section#venues .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.service-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.service-description {
    text-align: left;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
}

.service-description p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-artists {
    display: none;
}

.placeholder-text {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Page Header */
.page-header {
    position: relative;
    padding: 120px 0 60px;
    background: transparent;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    min-height: 300px;
}

.page-header video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
    pointer-events: none;
}

.page-header .page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Simplified header for privacy page */
.page-header-simple {
    background: var(--primary-color);
}

.page-header-simple .page-header-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Talent Section */
.talent-section {
    padding: 80px 0;
    background: var(--white);
}

/* Hide sections temporarily (can be restored easily) */
#weddings,
#corporate-private,
#candles {
    display: none;
}

.talent-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.talent-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.talent-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.talent-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.talent-image-placeholder {
    width: 50%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

#flamenco .talent-image-placeholder {
    width: 100%;
}

.talent-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.placeholder-icon {
    font-size: 4rem;
    opacity: 0.8;
}

.talent-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.talent-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.talent-card ul {
    text-align: left;
    color: var(--text-light);
    line-height: 1.8;
    margin: 1rem auto;
    padding-left: 1.5rem;
    max-width: 90%;
}

.talent-card li {
    margin-bottom: 0.5rem;
}

.talent-card strong {
    color: var(--primary-color);
    font-weight: 600;
}

.talent-card em {
    font-style: italic;
    color: var(--text-light);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.service-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--secondary-color);
    color: var(--secondary-color);
    fill: var(--secondary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
    stroke: var(--primary-color);
    color: var(--primary-color);
    fill: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.gdpr-consent {
    margin: 0.5rem 0;
}

.gdpr-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light);
}

.gdpr-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--secondary-color);
    flex-shrink: 0;
}

.gdpr-text {
    flex: 1;
}

.gdpr-text a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.gdpr-text a:hover {
    color: var(--primary-color);
}

.contact-form button {
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-to-top {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 1;
    visibility: visible;
    cursor: pointer;
}

.back-to-top:hover {
    color: var(--secondary-color);
}

/* Responsive Design - Portrait mode only */
@media (max-width: 768px) and (orientation: portrait) {
    .navbar .container {
        padding: 1rem 15px;
        gap: 1rem;
    }

    .nav-brand {
        margin-right: 1.5rem;
    }

    .nav-brand-text {
        font-size: 1.15rem;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        max-width: none;
        line-height: 1;
        display: flex;
        align-items: center;
    }


    .nav-right {
        gap: 0.2rem;
        flex-shrink: 0;
        margin-left: 0.3rem;
    }

    .nav-social {
        gap: 0.1rem;
        flex-shrink: 0;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    .hamburger {
        display: flex;
        flex-shrink: 0;
        min-width: 30px;
        margin-left: 0.2rem;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        left: auto;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 0;
        align-items: stretch;
        gap: 0;
        overflow-x: hidden;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }

    .nav-menu::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .nav-menu.active {
        right: 0;
        left: auto;
    }

    .nav-menu > li {
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-menu > li:last-child {
        border-bottom: none;
    }

    .nav-menu > li > a {
        padding: 1rem 2rem;
        justify-content: flex-start;
    }

    .nav-menu > li > a::after {
        display: none;
    }

    .dropdown-arrow {
        display: inline-block !important;
    }

    .dropdown-toggle {
        pointer-events: auto;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin: 0;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: block;
        padding: 0;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-menu a {
        padding: 0.75rem 3rem;
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
        margin-bottom: 0.85rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1.15rem;
        margin-top: 0;
        margin-bottom: 1.6rem;
        font-style: italic;
        line-height: 1.6;
    }

    .btn-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.99rem;
        margin-top: 0;
        line-height: 1.5;
        font-weight: 300;
    }

    .hero-content {
        padding: 90px 20px 30px;
    }

    .mute-btn {
        width: 35px;
        height: 35px;
        margin-left: 0.3rem;
    }

    .mute-btn svg {
        width: 18px;
        height: 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    section#venues .services-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .footer .container {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Landscape orientation fixes for mobile devices */
@media (orientation: landscape) and (max-height: 600px) {
    .dropdown-arrow {
        display: none !important;
    }

    .nav-menu > li {
        border-bottom: none !important;
    }

    .nav-menu > li > a::after {
        display: none !important;
    }
    .hero {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        padding: 0;
        overflow: hidden;
    }

    #bg-video {
        object-fit: cover;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }

    .hero-content {
        padding: 60px 20px 30px;
    }


    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-top: 0;
        margin-bottom: 1.3rem;
        line-height: 1.6;
        font-style: italic;
    }

    .btn-cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.935rem;
        margin-top: 0;
        line-height: 1.5;
        font-weight: 300;
    }

    .mute-btn {
        top: 70px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .mute-btn svg {
        width: 18px;
        height: 18px;
    }

    .navbar {
        min-height: auto;
    }

    .navbar .container {
        padding: 0.5rem 15px;
        gap: 1rem;
        flex-wrap: nowrap;
        align-items: center !important;
    }

    .nav-brand {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        line-height: 1;
    }

    .nav-brand-text {
        font-size: 1.3rem !important;
        white-space: nowrap;
        line-height: 1 !important;
        letter-spacing: 0.02em;
        max-width: none !important;
        overflow: visible !important;
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    .nav-right {
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .nav-social {
        gap: 0.3rem;
        flex-shrink: 0;
    }

    .social-icon {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    .social-icon svg {
        width: 16px;
        height: 16px;
    }

    .hamburger {
        display: none !important;
    }

    .nav-menu {
        position: static !important;
        flex-direction: row !important;
        background: transparent !important;
        width: auto !important;
        box-shadow: none !important;
        padding: 0 !important;
        align-items: center !important;
        gap: 0.5rem !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        max-height: none !important;
        overflow: visible !important;
        flex-shrink: 1;
        min-width: 0;
        margin-right: 0.5rem;
    }

    .nav-menu > li {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .nav-menu > li > a {
        white-space: nowrap;
        font-size: 0.85rem;
        line-height: 1 !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .nav-menu.active {
        right: auto !important;
    }

    .nav-menu::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .nav-menu > li {
        border-bottom: none !important;
    }

    .nav-menu > li > a::after {
        display: none !important;
    }

    .nav-menu > li > a {
        border-bottom: none;
        padding: 0 !important;
        line-height: 1 !important;
        display: flex !important;
        align-items: center !important;
    }

    .nav-menu > li > a::after {
        display: block !important;
    }

    .dropdown-menu {
        display: none !important;
    }

    .dropdown-toggle {
        pointer-events: auto !important;
    }

    .services {
        padding: 60px 0;
    }

    .about {
        padding: 60px 0;
    }

    .contact {
        padding: 60px 0;
    }

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

    .service-card {
        padding: 1.5rem;
    }

}

/* Additional landscape fixes for smaller phones */
@media (orientation: landscape) and (max-height: 500px) {
    .dropdown-arrow {
        display: none !important;
    }

    .nav-menu > li {
        border-bottom: none !important;
    }

    .nav-menu > li > a::after {
        display: none !important;
    }
    .hero {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        padding: 0;
        overflow: hidden;
    }

    #bg-video {
        object-fit: cover;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }

    .hero-content {
        padding: 50px 20px 25px;
    }

    .hero-logo {
        max-width: 150px;
        margin-bottom: 0.6rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 0.65rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
        margin-top: 0;
        margin-bottom: 1.1rem;
        font-style: italic;
        line-height: 1.5;
    }

    .btn-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.88rem;
        margin-top: 0;
        line-height: 1.5;
        font-weight: 300;
    }

    .mute-btn {
        top: 65px;
        right: 12px;
        width: 38px;
        height: 38px;
    }

    .mute-btn svg {
        width: 16px;
        height: 16px;
    }

    .navbar {
        min-height: auto;
    }

    .navbar .container {
        padding: 0.4rem 12px;
        gap: 0.75rem;
        flex-wrap: nowrap;
        align-items: center !important;
    }

    .nav-brand {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        line-height: 1;
    }

    .nav-brand-text {
        font-size: 1.2rem !important;
        white-space: nowrap;
        line-height: 1 !important;
        letter-spacing: 0.02em;
        max-width: none !important;
        overflow: visible !important;
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    .nav-right {
        gap: 0.4rem;
        flex-shrink: 0;
    }

    .nav-social {
        gap: 0.25rem;
        flex-shrink: 0;
    }

    .social-icon {
        width: 26px;
        height: 26px;
        flex-shrink: 0;
    }

    .social-icon svg {
        width: 14px;
        height: 14px;
    }

    .hamburger {
        display: none !important;
    }

    .nav-menu {
        position: static !important;
        flex-direction: row !important;
        background: transparent !important;
        width: auto !important;
        box-shadow: none !important;
        padding: 0 !important;
        align-items: center !important;
        gap: 0.4rem !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        max-height: none !important;
        overflow: visible !important;
        flex-shrink: 1;
        min-width: 0;
        margin-right: 0.4rem;
    }

    .nav-menu > li {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .nav-menu > li > a {
        white-space: nowrap;
        font-size: 0.8rem;
        line-height: 1 !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .nav-menu.active {
        right: auto !important;
    }

    .nav-menu::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .nav-menu > li {
        border-bottom: none !important;
    }

    .nav-menu > li > a::after {
        display: none !important;
    }

    .nav-menu > li > a {
        border-bottom: none;
        padding: 0 !important;
        line-height: 1 !important;
        display: flex !important;
        align-items: center !important;
    }

    .nav-menu > li > a::after {
        display: block !important;
    }

    .dropdown-menu {
        display: none !important;
    }

    .dropdown-toggle {
        pointer-events: auto !important;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .service-card {
        padding: 1.2rem;
    }

    .service-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) and (orientation: portrait) {
    .navbar .container {
        padding: 1rem 12px;
        gap: 0.5rem;
    }

    .nav-brand-text {
        font-size: 1.05rem;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        max-width: none;
        line-height: 1;
        display: flex;
        align-items: center;
    }

    .hero-logo {
        max-width: 200px;
        margin-bottom: 0.6rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-style: italic;
        line-height: 1.5;
    }

    .btn-cta {
        padding: 0.65rem 1.2rem;
        font-size: 0.935rem;
        margin-top: 0;
        line-height: 1.5;
        font-weight: 300;
    }

    .hero-content {
        padding: 80px 15px 25px;
    }

    .nav-right {
        gap: 0.3rem;
        flex-shrink: 0;
        margin-left: 0.3rem;
    }

    .nav-social {
        gap: 0.2rem;
        flex-shrink: 0;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }

    .social-icon svg {
        width: 16px;
        height: 16px;
    }

    .hamburger {
        display: flex;
        flex-shrink: 0;
        min-width: 30px;
        margin-left: 0.25rem;
        padding: 5px;
    }

    .hamburger span {
        width: 22px;
        height: 3px;
    }

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
