/* --- Global Styles & Variables --- */
:root {
    --premium-black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2b2b2b;
    --light-gray: #f4f4f4;
    --gold-accent: #d4af37;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--premium-black);
    color: var(--light-gray);
    line-height: 1.6;
}

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

h1,
h2,
h3,
h3 {
    font-weight: 700;
    line-height: 1.2;
}



h3 {
    font-size: 1.25rem;
    text-align: center;
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #f7931e, #ffdf35);
}

.section-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Header & Navigation (Mobile First) --- */
.mobile-nav-toggle {
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 9999;
}

.mobile-nav-toggle .fa-bars {
    font-size: 1.5rem;
    color: var(--light-gray);
    transition: transform 0.3s ease-in-out;
}

/* Change burger to an 'X' when menu is open */
.mobile-nav-toggle[aria-expanded="true"] .fa-bars {
    transform: rotate(180deg);
}

.mobile-nav-toggle[aria-expanded="true"] .fa-bars::before {
    content: "\f00d";
}

/* Visually hide text for screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
}

.logo span {
    color: var(--gold-accent);
}

/* Mobile navigation - starts hidden */
.nav-links {
    list-style-type: none;
    display: none !important;
    position: fixed;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform 350ms ease-out;
}

.nav-links[data-visible="true"] {
    transform: translateX(0%);
    top: 2rem;
    width: 100%;
    margin: -2rem;
    display: flex !important;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-accent);
}

.cta-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-primary {
    background: linear-gradient(45deg, #d4af37, #bf950b);
    color: #000;
}

.cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #d4af37;
}

.cta-primary:hover,
.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px hsl(45, 74%, 63%);
}

.cta-button-nav {
    background: none;
    color: var(--gold-accent);
    padding: 0;
    font-size: 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition:
        background-color 0.3s ease,
        transform 0.2s ease;
}

.cta-button:hover,
.cta-button-nav:hover {
    background-color: #e7c55c;
    color: var(--dark-gray) !important;
    transform: translateY(-2px);
}

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

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem 1rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
}

.hero-content h1,
.hero-content h2 {
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #d4af37;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* --- Services Section --- */
.services-section {
    padding: 4rem 0;
    background-color: var(--premium-black);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background-color: var(--dark-gray);
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--gold-accent);
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.service-card p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #a0a0a0;
}

/* Marketing Section */
.marketing-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #111, #222);
    text-align: center;
}

.marketing-content {
    max-width: 800px;
    margin: 0 auto;
}

.stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d4af37;
}

/* --- Booking Section --- */
.booking-section {
    padding: 4rem 0;
    background-color: var(--dark-gray);
}

.booking-form {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    background: var(--premium-black);
    padding: 2rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--medium-gray);
}

.form-group {
    margin-bottom: 2rem;
}



/* Enhanced Form Styling */
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #333;
    border-radius: 5px;
    background: #222;
    color: #fff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.form-group small {
    color: #ccc;
    font-size: 0.9rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
    margin: 1rem 0;
}

.checkbox-item.addon {
    grid-column: 1 / -1;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 5px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Enhanced Form Message Styling */
#form-message {
    border-radius: 10px;
    transition: all 0.3s ease;
    animation: slideIn 0.5s ease-out;
}

#form-message.success {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 200, 0, 0.1));
    border: 2px solid #00ff00;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

#form-message.error {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 0, 0, 0.1));
    border: 2px solid #ff6b6b;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

#form-message h3 {
    font-size: 1.5rem;
    font-weight: bold;
}

#form-message p {
    line-height: 1.6;
}

#form-message a {
    color: #d4af37;
    text-decoration: underline;
    transition: color 0.3s ease;
}

#form-message a:hover {
    color: #fff;
}

/* Animation for form message */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading button animation */
.cta-button .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Form field validation styles */
.form-group input.valid {
    border-color: #00ff00 !important;
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

.form-group input.invalid {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 5px rgba(255, 107, 107, 0.3);
}

/* Success/Error message responsiveness */
@media (max-width: 768px) {
    #form-message {
        margin: 1rem 0;
        padding: 1.5rem;
    }

    #form-message h3 {
        font-size: 1.3rem;
    }

    #form-message i {
        font-size: 2rem !important;
    }
}

.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        margin-bottom: 0.75rem;
    }
}

.form-group>label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
}

.checkbox-item input[type="checkbox"] {
    margin: auto 0.75rem;
    width: 18px;
    height: 18px;
}

.checkbox-item.addon {
    margin-top: 1rem;
    grid-column: 1 / -1;
}

.booking-form input[type="text"],
.booking-form textarea,
.booking-form input[type="email"] {
    width: 100%;
    padding: 0.8rem;
    background: var(--medium-gray);
    border: 1px solid #444;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.booking-form input[type="text"]:focus,
.booking-form input[type="email"]:focus {
    outline: none;
    border-color: var(--gold-accent);
}

.calendar-placeholder {
    background: var(--medium-gray);
    padding: 3rem 1rem;
    text-align: center;
    border-radius: 4px;
    border: 2px dashed #444;
    color: #888;
}

.booking-form .cta-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--premium-black);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--medium-gray);
}

.footer-content .logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-content p {
    color: #a0a0a0;
    margin-bottom: 0.5rem;
}

.footer-content a {
    color: var(--gold-accent);
    text-decoration: none;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    gap: 0.5rem;
    color: var(--light-gray);
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.social-links a:hover {
    color: var(--gold-accent);
    transform: scale(1.1);
}

/* ========================================= */
/* === Tablet Breakpoint (min-width: 480px) === */
/* ========================================= */
@media (min-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .navbar {
        padding: 0 1.5rem;
    }

    .cta-buttons {
        gap: 1rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1.35rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-form {
        padding: 2.5rem 2rem;
    }
}

/* ========================================= */
/* === Desktop Breakpoint (min-width: 769px) === */
/* ========================================= */
@media (min-width: 769px) {
    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 2rem;
    }

    .container {
        padding: 0 2rem;
    }

    .navbar {
        padding: 0 2rem;
    }


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

    .logo {
        font-size: 1.8rem;
    }

    /* Hide mobile nav toggle on desktop */
    .mobile-nav-toggle {
        display: none;
    }

    /* Show desktop navigation */
    .nav-links {
        display: flex !important;
        position: static;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 0;
        padding: 0;
        background: transparent;
        backdrop-filter: none;
        transform: none;
        transition: none;
        top: auto;
        width: auto;
        margin: 0;
    }

    .nav-links li {
        margin-left: 2rem;
    }

    .nav-links a {
        font-size: 1rem;
    }

    /* Desktop CTA button styling */
    .nav-links .cta-button-nav {
        background-color: var(--gold-accent);
        color: var(--premium-black);
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 700;
        transition:
            background-color 0.3s ease,
            transform 0.2s ease;
    }

    .cta-primary,
    .cta-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-content {
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1.25rem;
    }

    .services-section {
        padding: 6rem 0;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

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

    .marketing-section {
        padding: 6rem 2rem;
    }

    .stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .stat-number {
        font-size: 3rem;
    }

    .booking-section {
        padding: 6rem 0;
    }

    .booking-form {
        padding: 3rem;
    }

    .form-group label {
        font-size: 1.2rem;
    }

    .form-group>.side-by-side {
        display: flex;
        gap: 1rem;
    }
}