/* ===========================
   CSS RESET & BASE STYLES
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --nav-height: 80px;
    --footer-height: 60px;
    /* Colors - Dark Theme */
    --primary-color: #111418; /* navbar/footer background */
    --secondary-color: #e74c3c; /* accent for buttons/underline */
    --accent-color: #3498db; /* links/buttons hover */
    --text-dark: #f5f7fa; /* primary text on dark */
    --text-light: #c2c8ce; /* secondary text on dark */
    --bg-light: #1a1f24; /* section background */
    --bg-white: #0d0f12; /* page background */
    --overlay-dark: rgba(0, 0, 0, 0.85);
    --overlay-light: rgba(0, 0, 0, 0.5);
    /* Header-only overlay (stacks on top of site background) */
    --overlay-header: rgba(0, 0, 0, 1);

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Typography scale */
    --fs-body: 16px;
    --fs-h1: 50px;          /* hero title */
    --fs-h2: 42px;          /* section h2 */
    --fs-section-title: 40px;
    --fs-subtitle: 24px;
    --fs-small: 14px;

    /* Standardized text colors */
    --color-text: var(--text-dark);
    --color-text-secondary: var(--text-light);
    --color-heading: var(--text-dark);

    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    /* Layout tweaks */
    --hero-content-offset: 0rem; /* ensure hero content sits below header */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-body);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--bg-white);
    padding-bottom: var(--footer-height);
}

/* Ensure anchors and section starts are not hidden under fixed header */
section { scroll-margin-top: var(--nav-height); }

/* Prevent stray horizontal scrollbars from fixed/full-bleed layers */
html, body { overflow-x: hidden; }
/* Lock background scroll when a modal is open */
html.modal-open,
body.modal-open {
    overflow: hidden !important;
    height: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===========================
   NAVIGATION
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Darken only the header area, while showing the site background image */
.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--overlay-header);
    z-index: -1;
}

.navbar.scrolled {
    background-color: transparent;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    text-decoration: none; /* Added to remove underline */
}

.logo-img {
    width: auto;
    height: 80px; /* Increased size */
    margin-right: 20px; /* Increased spacing */
    display: inline-block;
}

.logo-text {
    line-height: 1;
    font-size: 64px; /* Increased font size */
    text-decoration: none; /* Added to remove underline */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-social { display: flex; gap: 14px; align-items: center; margin-left: 16px; }
.nav-social .social-link { color: var(--color-text); display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; }
.nav-social .social-link:hover { background-color: var(--secondary-color); border-color: var(--secondary-color); color: #ffffff; }
.nav-social i { font-size: 16px; line-height: 1; }
/* Stack icon above label for each social item */
.social-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.social-label { font-size: 11px; color: var(--color-text-secondary); line-height: 1; }

.nav-link {
    color: var(--color-text);
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* ===========================
   HERO SECTION
   =========================== */

/* Global fixed background layer */
.site-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    /* Cover viewport with side bleed where needed */
    background: url('../images/Background/Background_1.webp') center/cover no-repeat;
    will-change: background-position;
}
.site-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--overlay-dark);
    pointer-events: none;
}

/* Make main sections transparent so the global background remains visible */
.about, .portfolio, .contact, footer {
    background: transparent !important;
    background-color: transparent !important;
}

.hero {
    height: calc(100vh - var(--nav-height));
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: var(--nav-height);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    transform: translateY(var(--hero-content-offset));
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 5.5vw, var(--fs-h1));
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    display: inline-block;
    margin: 0 auto;
    position: relative;
}

/* Red underline accent under hero title */
.hero-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
}

.hero-subtitle {
    font-size: var(--fs-subtitle);
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    /* Move with hero offset so it's not cut off */
    bottom: calc(30px - var(--hero-content-offset));
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin: 0 auto;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0) rotate(-45deg); }
    50% { transform: translateY(10px) rotate(-45deg); }
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* ===========================
   SECTION TITLES
   =========================== */

.section-title {
    font-family: var(--font-heading);
    font-size: var(--fs-section-title);
    font-weight: 700;
    text-align: center;
    margin: 0 auto 15px;
    color: var(--color-heading);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
    display: block;
    width: max-content;
    position: relative;
}

/* Red underline accent under section titles */
.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
}

/* Booking title/tagline removed */

.section-subtitle {
    text-align: center;
    font-size: var(--fs-subtitle);
    color: var(--color-text-secondary);
    margin-bottom: 50px;
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    margin-bottom: 25px;
    color: var(--color-heading);
}

.about-text p {
    font-size: var(--fs-body);
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--color-text);
}

.about-image img {
    border-radius: 0;
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    background-color: transparent;
}

/* Wrap image to clip any edge artifacts and apply visual effects */
.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Caption under about image */
.image-caption {
    margin-top: 10px;
    color: var(--color-text-secondary);
    font-style: italic;
    font-size: 14px;
}

/* ===========================
   PORTFOLIO SECTION
   =========================== */

.portfolio {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}
/* Duplicate .portfolio block removed */

.portfolio-sections { margin-top: 24px; display: grid; gap: 24px; max-width: 1200px; margin-left: auto; margin-right: auto; }
/* Event carousel for portfolio events (3 per view) */
.event-carousel { position: relative; --events-per-page: 3; --event-gap: 30px; }
.event-viewport { overflow: hidden; position: relative; }
.empty-category-message { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 12px 16px; font-size: 16px; font-weight: 500; color: var(--text-light); z-index: 1; }
.event-track { display: flex; gap: var(--event-gap); transition: transform 0.3s ease; }
.event-carousel .portfolio-blocks { margin: 0; }
.event-carousel .portfolio-block { flex: 0 0 calc((100% - (var(--events-per-page) - 1) * var(--event-gap)) / var(--events-per-page)); }
.event-button { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.25); width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background-color 0.2s ease, border-color 0.2s ease; z-index: 2; }
.event-button:hover { background: var(--secondary-color); border-color: var(--secondary-color); }
.event-button.prev { left: -12px; }
.event-button.next { right: -12px; }
.event-counter { text-align: center; color: var(--text-light); font-size: 14px; margin-top: 10px; }

@media (max-width: 768px) {
    .event-carousel { --events-per-page: 1; --event-gap: 16px; }
    .event-button.prev { left: 4px; }
    .event-button.next { right: 4px; }
}
/* ===========================
   CATEGORY CAROUSEL (TEXT PILLS)
   =========================== */
.category-carousel { position: relative; display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.carousel-viewport { overflow-x: hidden; overflow-y: hidden; -webkit-overflow-scrolling: touch; scroll-behavior: smooth; flex: 1; }
.carousel-viewport { -ms-overflow-style: none; }
.carousel-viewport::-webkit-scrollbar { display: none; }
.carousel-track { 
    /* Two-line stacked layout via grid */
    display: grid; 
    grid-template-columns: repeat(var(--cols, 3), 1fr); 
    column-gap: var(--carousel-gap, 12px); 
    row-gap: 10px; 
    padding: 8px 4px; 
}
.carousel-button { position: relative; background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.25); width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background-color 0.2s ease, border-color 0.2s ease; }
.carousel-button:hover { background: var(--secondary-color); border-color: var(--secondary-color); }

.carousel-item { 
    min-height: 44px;
    padding: 8px 16px;
    border-radius: 999px; 
    border: 1px solid rgba(255,255,255,0.25); 
    color: var(--color-text); 
    background: rgba(255,255,255,0.06); 
    text-align: center; 
    font-weight: 600; 
    font-size: 15px;
    letter-spacing: 0.3px; 
    cursor: pointer; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease; 
    position: relative;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    line-height: 1.2;
    /* Keep overflow visible so progress bar at bottom is shown */
    overflow: visible;
}
/* Two-line clamp applied to inner label so flex centering remains intact */
.carousel-label { 
    display: -webkit-box; 
    -webkit-line-clamp: 2; 
    line-clamp: 2;
    -webkit-box-orient: vertical; 
    overflow: hidden;
    text-align: center;
    max-width: 100%;
}
.carousel-progress { position: absolute; left: 0; bottom: -6px; height: 3px; width: 100%; background: var(--secondary-color); border-radius: 999px; transform-origin: left; transform: scaleX(0); opacity: 0; }
.carousel-item.active .carousel-progress { opacity: 1; animation: carouselProgress var(--carousel-progress-ms, 4000ms) linear forwards; animation-play-state: var(--carousel-progress-state, running); }

@keyframes carouselProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}
.carousel-item:hover { background: rgba(255,255,255,0.14); }
.carousel-item.active { background: var(--secondary-color); color: #fff; border-color: var(--secondary-color); }
.carousel-item.empty { opacity: 0.6; }

@media (max-width: 768px) {
    .carousel-item { min-height: 40px; padding: 8px 12px; font-size: 14px; }
}
.portfolio-category { background: none; margin-bottom: 40px; }
.category-title { font-family: var(--font-heading); font-size: 28px; color: var(--secondary-color); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--secondary-color); }
.empty-category { color: var(--text-light); font-size: 14px; padding: 16px; background: rgba(255,255,255,0.05); border-radius: 8px; margin-top: 8px; font-style: italic; }
.empty-category code { background: rgba(255,255,255,0.1); padding: 2px 6px; border-radius: 4px; font-size: 13px; }
.portfolio-blocks { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.portfolio-block { cursor: pointer; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.4); transition: transform 0.3s ease, box-shadow 0.3s ease; background: rgba(255,255,255,0.05); position: relative; }
.portfolio-block:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(231,76,60,0.5); }
.portfolio-block.placeholder { visibility: hidden; }
.block-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; aspect-ratio: 1; gap: 3px; background-color: var(--primary-color); }
.block-grid img { width: 100%; height: 100%; object-fit: cover; }
.block-placeholder { background: linear-gradient(135deg, rgba(231,76,60,0.1), rgba(231,76,60,0.05)); }
.block-label { padding: 12px; font-size: 16px; font-weight: 500; text-align: center; color: var(--text-color); background: rgba(17,20,24,0.95); }

    .portfolio-modal { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; display: none; z-index: 9999; overflow: hidden; overscroll-behavior: contain; margin: 0; padding: 0; }
    .portfolio-modal.open { display: block; }
    .modal-backdrop { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.95); z-index: 9999; margin: 0; padding: 0; cursor: pointer; }
    .modal-content { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; display: flex; align-items: center; justify-content: center; z-index: 10000; margin: 0; padding: 0; pointer-events: none; }
    .modal-close { position: fixed; right: 20px; top: 20px; background: rgba(0,0,0,0.8); border: 2px solid rgba(255,255,255,0.5); color: #fff; font-size: 32px; line-height: 46px; width: 50px; height: 50px; cursor: pointer; border-radius: 50%; z-index: 10003; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; pointer-events: auto; }
    .modal-close:hover { background: rgba(231,76,60,0.9); transform: rotate(90deg); }
    .lightbox-container { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 10001; pointer-events: none; }
    .lightbox-image { max-width: 95vw; max-height: 88vh; width: auto; height: auto; object-fit: contain; border-radius: 4px; box-shadow: 0 8px 32px rgba(0,0,0,0.8); display: block; pointer-events: auto; }
    .lightbox-nav { position: fixed; background: rgba(0,0,0,0.2); border: none; color: rgba(255,255,255,0.4); font-size: 80px; width: 80px; height: 120px; cursor: pointer; z-index: 10002; font-weight: 300; display: flex; align-items: center; justify-content: center; pointer-events: auto; -webkit-user-select: none; -ms-user-select: none; user-select: none; }
    .lightbox-nav:hover { background: rgba(0,0,0,0.5); color: rgba(255,255,255,0.9); }
    .lightbox-prev { left: auto; }
    .lightbox-next { right: auto; }
    .lightbox-counter { position: relative; align-self: center; margin-top: 12px; background: rgba(0,0,0,0.8); color: #fff; padding: 10px 24px; border-radius: 24px; font-size: 16px; font-weight: 500; z-index: 10002; pointer-events: none; }

/* ===========================
    NO-SAVE OVERLAY
    =========================== */
.no-save-overlay { position: absolute; inset: 0; background: transparent; z-index: 10001; pointer-events: auto; }
.lightbox-container .no-save-overlay { cursor: default; }
.block-grid img { }
.gallery-grid { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; display: grid; grid-template-columns: repeat(3, 320px); justify-content: center; align-content: start; column-gap: 5px; row-gap: 5px; padding: 8px; box-sizing: border-box; overflow-y: auto; z-index: 10001; pointer-events: auto; }
/* Fixed-size tiles: prevent any viewport-driven resizing */
.gallery-item { display: flex; align-items: center; justify-content: center; background: none; border: none; padding: 0; margin: 0; cursor: pointer; width: 320px; height: 400px; }
/* Thumbnails fill the tile exactly for consistent spacing */
.gallery-thumb { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; box-shadow: none; box-sizing: border-box; border: 1px solid #ffffff; }
.gallery-grid .modal-close { position: fixed; right: 20px; top: 20px; background: rgba(0,0,0,0.8); border: 2px solid rgba(255,255,255,0.5); color: #fff; font-size: 32px; line-height: 46px; width: 50px; height: 50px; cursor: pointer; border-radius: 50%; z-index: 10003; }

/* Show not-allowed cursor when drag is disabled */
.lightbox-container.drag-disabled, .lightbox-container.drag-disabled .lightbox-image { cursor: not-allowed; }


.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background-color: #ddd;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--overlay-dark));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 5px;
}

.portfolio-overlay p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-item.hidden {
    display: none;
}

/* Reviews section removed: styles pruned as unused */

/* ===========================
   CONTACT MODAL (replaces booking modal)
   =========================== */

.contact-modal { position: fixed; inset: 0; width: 100%; height: 100%; display: none; z-index: 10000; overflow: hidden; overscroll-behavior: contain; }
.contact-modal.open { display: block; }
.contact-modal .modal-backdrop { position: fixed; inset: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 10000; }
.contact-dialog { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); width: min(1000px, 95vw); max-height: calc(100vh - 48px); overflow-y: auto; overscroll-behavior: contain; background: var(--bg-white); border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.6); z-index: 10001; padding-bottom: 24px; box-sizing: border-box; }
.contact-dialog .container { padding: 24px; max-width: 100%; box-sizing: border-box; overflow-x: hidden; }
.contact-dialog .modal-close { position: absolute; right: 16px; top: 16px; }

.section-title.contact-title { font-size: 32px; text-align: center; }

/* Pricing styles removed */

/* ===========================
    FORMS
    =========================== */

/* Contact Form (default styles) */
.contact-form {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 10px;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Booking-related form styles removed */

/* Generic form actions for other forms */
.form-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
}

.form-note {
    margin-top: 0;
    font-size: 14px;
    color: var(--text-light);
}

.form-message {
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.form-message h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

/* ===========================
   CONTACT SECTION
   =========================== */

.contact {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.social-link {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: var(--secondary-color);
}

.contact-form-wrapper {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    color: white;
    padding: 12px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Header-like overlay for footer area */
.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--overlay-header);
    z-index: -1;
}

/* Single-row inline footer bar */
.footer-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: var(--footer-height);
    padding: 0 20px;
    flex-wrap: nowrap;
}
.footer-item, .footer-copy { font-size: 14px; font-weight: 600; }
.footer-sep { opacity: 0.6; }

@media (max-width: 768px) {
    .footer-bar { flex-wrap: wrap; justify-content: center; gap: 8px; }
    .footer-item, .footer-copy { font-size: 13px; }
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
    :root { --hero-content-offset: 0rem; }
    .nav-social { display: none; }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 40px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .logo-img { height: 48px; margin-right: 12px; }
    .logo-text { font-size: 24px; }
    /* .hero-title scales via clamp; remove explicit size override */


    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .portfolio-blocks {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-nav {
        width: 60px;
        font-size: 60px;
    }

    .lightbox-image {
        max-width: 95%;
        max-height: 85%;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Booking-form mobile overrides removed */
}

@media (max-width: 480px) {
    :root { --hero-content-offset: 0rem; }
    .contact-dialog {
        width: 100vw !important;
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        box-sizing: border-box !important;
        padding: 0 !important;
    }
    
    .contact-dialog .container {
        padding: 12px !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    /* Pricing mobile overrides removed */
}

@media (max-width: 480px) {
    .logo-img { height: 40px; margin-right: 8px; }
    .logo-text { display: none; }
    /* .hero-title scales via clamp; remove explicit size override */

    .hero-subtitle { font-size: 14px; }

    .section-title {
        font-size: 28px;
    }

    .nav-container {
        height: 70px;
    }

    .hero {
        margin-top: var(--nav-height);
    }
}
