/* --- Variables & Reset --- */
:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-color: #d4af37;
    /* Goldish accent */
    --accent-hover: #b5952f;
    --dark-overlay: rgba(0, 0, 0, 0.6);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Playfair Display', serif;
    /* Or the other way around depending on preference */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    /* Using Outfit for body for readability */
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.nav-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: auto;
    /* Push to right if navbar is not space-between */
}

/* Ensure hamburger is hidden on desktop */
.hamburger {
    display: none;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.btn-nav {
    border: 1px solid var(--text-color);
    padding: 8px 20px;
    border-radius: 0;
    /* Sharp edges for "Cinematic" feel */
}

.btn-nav:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center;  <-- Removed center align */
    text-align: left;
    /* <-- Changed to left */
    padding-left: 10%;
    /* <-- Added padding for left alignment */
    overflow: hidden;
}

.hero-left {
    align-items: flex-start;
}


.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
    object-position: center 30%;
}

.video-wrapper {
    position: relative;
    /* Ensure aspect ratio logic remains on parent wrapper */
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay);
    z-index: -1;
}

.hero-content {
    margin-top: 100px;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-size: 6rem;
    margin-bottom: 10px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    line-height: 0.85;
    margin-left: -5px;
}



.hero-lead {
    font-size: 1.5rem;
    /* Matches .lead size roughly */
    color: var(--accent-color);
    font-style: italic;
    font-family: var(--font-body);
    margin-bottom: 20px;
    opacity: 1 !important;
    /* Override default p opacity if needed */
    letter-spacing: 1px;
}

.hero-content p {
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-main {
    display: inline-block;
    background: var(--accent-color);
    color: #000;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.btn-main:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline-hero {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.btn-outline-hero:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}



/* --- Reviews Marquee Section --- */
.reviews-section {
    background: var(--bg-color);
    overflow: hidden;
    /* Hide horizontal scroll from marquee */
}

.marquee-container {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow-x: auto;
    /* Enable JS/manual scrolling */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    white-space: nowrap;
    padding: 20px 0;
    /* Optional edge fade effect */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    cursor: grab;
}

.marquee-container:active {
    cursor: grabbing;
}

.marquee-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar WebKit */
}

.marquee-track {
    display: inline-flex;
    gap: 30px;
    padding-left: 30px;
    /* Initial offset so it doesn't start abruptly */
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 4px;
    transition: var(--transition);
    width: 380px;
    /* Fixed width for consistent horizontal scrolling */
    flex-shrink: 0;
    white-space: normal;
    /* Override nowrap from container */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.review-title {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.4;
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.review-author {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

.review-author a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.review-author a:hover {
    color: var(--accent-color);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.scroll-indicator span {
    display: block;
    width: 4px;
    height: 8px;
    background: #fff;
    margin: 5px auto;
    border-radius: 2px;
    animation: scrollDrop 2s infinite;
}

@keyframes scrollDrop {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* --- Sections General --- */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

/* --- Services Section --- */
.services-section {
    background: var(--bg-color);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two columns */
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: block;
    /* Ensure it behaves as a block link */
    text-decoration: none;
    /* Remove underline from link */
    height: 100%;
    /* Equal height if in grid */
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}



.service-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-family: var(--font-body);
}

.btn-text {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.btn-text:hover {
    color: #fff;
    padding-left: 5px;
    /* Tiny nudge animation */
}

/* --- About Section --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    /* Changed from center to start (top alignment) */
}

.about-image .frame {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
}

.about-image img {
    width: 100%;
    filter: grayscale(20%);
    /* Artistic touch */
    transition: var(--transition);
}

.about-image:hover img {
    filter: grayscale(0%);
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    margin-top: 0;
    /* Ensuring top alignment */
    line-height: 1.1;
    /* Tighter line height for title */
}

.about-text .lead {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-style: italic;
    font-family: var(--font-body);
}

.social-icons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    display: inline-flex;
    margin: 0 15px;
}

.footer-socials a:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* --- Events Section --- */
.events-section {
    background: var(--bg-color);
}

.events-list {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.event-date {
    text-align: center;
    min-width: 80px;
}

.event-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.event-date .month {
    font-size: 0.9rem;
    opacity: 0.7;
}

.event-details {
    flex-grow: 1;
    padding: 0 30px;
}

.event-details h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.event-details p {
    opacity: 0.6;
}

.event-action {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.event-action .btn-outline {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-action .btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.status {
    opacity: 0.5;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-block;
}

/* --- Footer --- */
footer {
    padding: 100px 0 50px;
    text-align: center;
    background: var(--bg-color);
}

#contact {
    scroll-margin-top: 100px;
    /* Ensure title isn't hidden behind navbar */
}

.footer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.email-link {
    font-size: 2.5rem;
    display: inline-block;
    margin: 10px 0 30px;
    color: var(--accent-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    word-break: break-all;
    /* Prevent overflow on mobile */
}

.email-link:hover {
    border-color: var(--accent-color);
}

.footer-socials {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}


/* --- Booking Page --- */
.booking-section {
    padding-top: 150px;
    /* Space for fixed navbar */
    min-height: 80vh;
    background: var(--bg-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -40px;
    margin-bottom: 60px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 4px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 15px;
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-heading);
    /* Outfit */
    transition: var(--transition);
    color-scheme: dark;
    /* CRITICAL: Makes native date picker dark-themed & visible */
}

input[type="date"] {
    cursor: pointer;
    /* Show it's clickable everywhere */
    min-height: 52px;
    position: relative;
    /* Fix for some browsers having transparent text */
    color: #fff;
}

/* Ensure placeholder-like text is visible if value is empty */
input[type="date"]:invalid::-webkit-datetime-edit {
    color: rgba(255, 255, 255, 0.5);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(1);
    opacity: 0.7;
    padding: 5px;
    /* Increase hit area of icon */
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.booking-form select {
    padding-right: 60px;
    /* Prevent text from hitting the arrow */
    cursor: pointer;
}

.booking-form select option {
    background: #111;
    color: #fff;
}

.btn-block {
    width: 100%;
    margin-top: 20px;
    text-align: center;
    padding: 20px;
    font-size: 1.1rem;
}

.email-link-sm {
    color: #fff;
    text-decoration: underline;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}



/* --- Parallax Separators --- */
.parallax-separator {
    background-image: url('assets/hero_poster.jpg');
    /* Re-using hero, or could be a different texture */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Darken it */
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.media-section {
    padding: 100px 0;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 40px auto 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.video-wrapper iframe,
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-placeholder:hover .video-thumb {
    transform: scale(1.02);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.video-placeholder:hover .play-button {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    padding-bottom: 100%;
    /* Square tiles */
    cursor: pointer;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --- Testimonials Section --- */
.reviews-section {
    padding: 100px 0;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.review-author {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* --- Success Modal --- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2100;
    /* Above navbar and lightbox */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-box {
    background: #0a0a0a;
    border: 1px solid var(--accent-color);
    padding: 50px 40px;
    border-radius: 4px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: translateY(20px);
    animation: modalSlideUp 0.4s ease forwards;
}

.modal-box-wide {
    max-width: 800px;
    /* Wider for form */
    text-align: left;
    /* Align form text left */
    padding: 40px;
    max-height: 90vh;
    /* Ensure it fits on screen */
    overflow-y: auto;
    /* Scroll if needed */
}

.modal-box-wide h3 {
    text-align: center;
    color: #fff;
    font-size: 2rem;
}

@keyframes modalSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon-large svg {
    width: 40px;
    height: 40px;
}

.modal-box h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.modal-box p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-color);
}

/* --- Lightbox Modal --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--accent-color);
    text-decoration: none;
    cursor: pointer;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.success-message .success-icon svg {
    width: 40px;
    height: 40px;
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.success-message p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Helper Class for Text Spacing */
.mb-4 {
    margin-bottom: 2rem !important;
    /* Force nice separation */
    line-height: 1.8;
    /* Improve readability */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Mobile Responsiveness --- */
/* --- Media Queries (Responsive Design) --- */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .services-grid {
        gap: 20px;
    }

    .split-layout {
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }
}

.view-more-link {
    display: inline-block;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--accent-color);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.view-more-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* YouTube Modal & Grid */
.yt-modal-box {
    width: 90%;
    max-width: 1000px;
    padding: 30px;
    max-height: 90vh;
    overflow-y: auto;
}

.yt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.yt-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.yt-container.vertical {
    aspect-ratio: 9 / 16;
}

.yt-container.horizontal {
    aspect-ratio: 16 / 9;
}

.yt-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

    /* Navigation */
    .navbar {
        padding: 15px 20px;
        background: rgba(10, 10, 10, 0.95);
    }

    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        background: rgba(10, 10, 10, 0.98);
        height: 100vh;
        width: 70%;
        max-width: 300px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        transform: translateX(0%);
    }

    .nav-links li {
        margin: 20px 0;
        opacity: 0;
    }

    /* Hamburger styling */
    .hamburger {
        display: block;
        z-index: 1001;
        /* Above nav-links */
    }

    /* Hero */
    .hero {
        padding-left: 0;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .hero-left {
        align-items: center;
    }

    .hero-content {
        margin-top: 0;
        padding: 0 20px;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-left: 0;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* About */
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
        max-width: 100%;
        margin: 0 auto;
    }

    .about-text {
        text-align: center;
    }

    .about-text h2 {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    /* Events */
    .event-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .event-date {
        min-width: auto;
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .event-date .day {
        font-size: 1.5rem;
    }

    .event-details {
        padding: 0;
        margin-bottom: 15px;
    }

    .event-action {
        width: 100%;
    }

    .event-action .btn-outline {
        display: block;
        width: 100%;
    }

    /* Footer & Booking */
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-container {
        padding: 40px 20px;
    }

    .footer-socials {
        flex-wrap: wrap;
        gap: 20px;
    }

    .email-link {
        font-size: 1.2rem;
    }

    /* Reviews */
    .marquee-container {
        padding: 10px 0;
    }

    .review-card {
        width: 300px;
        padding: 30px;
    }

    .reviews-section {
        overflow: hidden;
    }

    .yt-grid {
        grid-template-columns: 1fr;
    }
}

/* Specific Hamburger Animation */
.hamburger.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.toggle span:nth-child(2) {
    opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Specific Animation for Nav Links */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.loader-line {
    width: 0;
    height: 2px;
    background: #fff;
    margin: 0 auto;
    animation: lineGrow 1.5s ease 0.5s forwards;
}

@keyframes lineGrow {
    to {
        width: 100px;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Micro-interactions & Visual Polish --- */
.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.service-card .btn-text {
    position: relative;
    transition: padding-left 0.3s ease;
}

.service-card:hover .btn-text {
    padding-left: 10px;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* Parallax Depth Enhancement */
/* Adding a slight zoom effect on scroll if possible, or just ensuring high quality */
.parallax-separator {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    /* Hint for performance */
}