/* ============================================
   Dominique Dionisio - Professional Hair Stylist
   White & Marble Elegance Theme
   ============================================ */

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* White & Marble Color Palette */
    --primary-white: #FFFFFF;
    --navbar-bg: #d4b5b0;
    --marble-gray: #F5F5F5;
    --rose-gold: #B76E79;
    --deep-charcoal: #2C2C2C;
    --soft-gold: #D4AF37;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --light-gray: #E8E8E8;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-padding: 20px;

    /* Effects */
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--primary-white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--deep-charcoal);
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--deep-charcoal);
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 300;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--rose-gold), var(--soft-gold));
    margin: 0 auto 3rem;
    border-radius: 2px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--navbar-bg) !important;
    background-color: #d4b5b0 !important;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem var(--container-padding);
}

.nav-brand a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-charcoal);
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.nav-brand .logo {
    height: 130px;
    width: auto;
    display: block;
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--rose-gold);
}

.btn-nav {
    background: var(--rose-gold);
    color: var(--primary-white);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-nav:hover {
    background: var(--soft-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--deep-charcoal);
    transition: var(--transition);
    border-radius: 2px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
    image-orientation: from-image;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(183, 110, 121, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--primary-white);
    animation: fadeInUp 1s ease-out;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: var(--primary-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--soft-gold);
    font-family: var(--font-body);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-white);
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-location {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-white);
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--rose-gold);
    color: var(--primary-white);
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
}

.btn-primary:hover {
    background: var(--soft-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(183, 110, 121, 0.4);
}

.btn-secondary {
    background: var(--primary-white);
    color: var(--deep-charcoal);
    border: 2px solid var(--deep-charcoal);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--deep-charcoal);
    color: var(--primary-white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.3rem 3.5rem;
    font-size: 1.1rem;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: var(--section-padding) 0;
    background: var(--primary-white);
}

.section-header {
    margin-bottom: 4rem;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
}

.lead {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--rose-gold);
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 1.8rem;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.highlight-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--marble-gray);
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-white);
}

.highlight-item h3 {
    font-size: 1.6rem;
    color: var(--deep-charcoal);
    margin-bottom: 1rem;
}

.highlight-item p {
    color: var(--text-gray);
    font-size: 1.05rem;
}

/* ============================================
   IBE Extensions Section
   ============================================ */
.ibe-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--deep-charcoal) 0%, #3a3a3a 100%);
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.ibe-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(183, 110, 121, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.ibe-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ibe-section .section-title {
    color: var(--primary-white);
}

.ibe-section .title-underline {
    background: linear-gradient(to right, var(--rose-gold), var(--soft-gold));
}

.ibe-badge {
    display: inline-block;
    background: var(--rose-gold);
    color: var(--primary-white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ibe-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

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

.ibe-feature {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ibe-feature h4 {
    color: var(--soft-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.ibe-feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: var(--section-padding) 0;
    background: var(--marble-gray);
}

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

.service-card {
    background: var(--primary-white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--rose-gold);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--deep-charcoal);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
    text-align: left;
}

.service-card ul li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rose-gold);
    font-weight: bold;
}

/* ============================================
   Gallery Preview Section (Homepage)
   ============================================ */
.gallery-preview {
    padding: var(--section-padding) 0;
    background: var(--primary-white);
}

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

.gallery-preview-text p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.preview-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.preview-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
    image-orientation: from-image;
}

.preview-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.preview-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   Gallery Section (Full Gallery Page - Legacy)
   ============================================ */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--primary-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background: var(--marble-gray);
    border: 1px solid var(--light-gray);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--rose-gold);
    color: var(--primary-white);
    border-color: var(--rose-gold);
}

/* CSS Grid Gallery - No Masonry needed */
.gallery-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.gallery-item-simple {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item-simple picture {
    display: block;
    width: 100%;
}

.gallery-item-simple img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: var(--transition);
    image-orientation: from-image;
}

.gallery-item-simple:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item-simple:hover img {
    transform: scale(1.05);
}

/* Hide old masonry-based gallery */
.gallery-grid {
    display: none;
}

.grid-sizer,
.gallery-item {
    width: calc(33.333% - 13.33px); /* Account for 20px gutter divided by 3 columns */
    margin-bottom: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

/* Gallery items visibility controlled by JavaScript pagination on gallery.html */
/* Homepage simple gallery items use data-order attribute for filtering */

/* Simple Gallery Grid - CSS Grid (No Masonry) for Recent Photos */
.gallery-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.gallery-item-simple {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item-simple picture {
    display: block;
    width: 100%;
}

.gallery-item-simple img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: var(--transition);
    image-orientation: from-image;
}

.gallery-item-simple:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item-simple:hover img {
    transform: scale(1.05);
}

.gallery-item picture {
    display: block;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: var(--transition);
    image-orientation: from-image;
    transform: none !important;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--marble-gray) 0%, var(--light-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-placeholder p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-gray);
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--soft-gold) 100%);
}

.gallery-item:hover .gallery-placeholder p {
    color: var(--primary-white);
}

.gallery-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-gray);
    font-style: italic;
    font-size: 1.05rem;
}

/* Gallery Info Section */
.gallery-info {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: var(--marble-gray);
    border-radius: 10px;
    border-left: 4px solid var(--rose-gold);
}

.gallery-count-text {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   Lightbox Modal - Bottom Bar Design
   ============================================ */

/* Lightbox Container */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    flex-direction: column;
}

/* Image Content Area */
.lightbox-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: calc(100vh - 80px);
    padding: 20px;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    image-orientation: from-image;
    transform: none !important;
}

/* Bottom Navigation Bar */
.lightbox-bottom-bar {
    width: 100%;
    height: 80px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    gap: 15px;
    z-index: 10001;
}

/* Desktop - Centered Navigation Layout */
@media (min-width: 500px) {
    .lightbox-bottom-bar {
        justify-content: center;
        gap: 40px;
        padding: 0 40px;
        background: rgba(0, 0, 0, 0.95);
    }

    .lightbox-position {
        order: 0;
        margin-right: 20px;
    }

    .lightbox-bar-prev {
        order: 1;
    }

    .lightbox-bar-next {
        order: 2;
    }

    .lightbox-bar-close {
        order: 3;
        margin-left: 40px;
    }
}

/* Bottom Bar Buttons */
.lightbox-bar-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.lightbox-bar-btn:hover {
    background: rgba(183, 110, 121, 0.8); /* rose-gold */
    border-color: rgba(183, 110, 121, 1);
    transform: scale(1.05);
}

.lightbox-bar-btn:active {
    transform: scale(0.95);
    background: rgba(183, 110, 121, 1);
}

.lightbox-bar-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.05);
}

.lightbox-bar-btn:disabled:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Close Button (Center) - Larger and Distinct */
.lightbox-bar-close {
    width: 64px;
    height: 64px;
    background: rgba(220, 53, 69, 0.8); /* Red tint for close */
    border-color: rgba(220, 53, 69, 1);
    order: 2;
}

.lightbox-bar-close:hover {
    background: rgba(220, 53, 69, 1);
    border-color: rgba(220, 53, 69, 1);
}

/* Position Counter */
.lightbox-position {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    font-family: var(--font-body);
    min-width: 60px;
    text-align: center;
    user-select: none;
    order: 1;
}

.lightbox-position span {
    color: rgba(183, 110, 121, 1); /* rose-gold */
    font-size: 1.1rem;
}

/* Button Order */
.lightbox-bar-prev {
    order: 0;
}

.lightbox-bar-next {
    order: 3;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .lightbox-content {
        max-height: calc(100vh - 90px);
        padding: 15px;
    }

    .lightbox-bottom-bar {
        height: 90px;
        padding: 0 15px;
        gap: 10px;
    }

    .lightbox-bar-btn {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .lightbox-bar-close {
        width: 68px;
        height: 68px;
        font-size: 1.8rem;
    }

    .lightbox-position {
        font-size: 0.95rem;
        min-width: 55px;
    }
}

/* Portrait Mode - Optimize for One-Handed Use */
@media (orientation: portrait) and (max-width: 768px) {
    .lightbox-bottom-bar {
        padding: 0 10px;
    }

    /* Larger buttons for easier thumb reach */
    .lightbox-bar-btn {
        width: 64px;
        height: 64px;
    }

    .lightbox-bar-close {
        width: 72px;
        height: 72px;
    }
}

/* Small Screens - Compact Layout */
@media (max-width: 375px) {
    .lightbox-bottom-bar {
        height: 80px;
        padding: 0 8px;
        gap: 8px;
    }

    .lightbox-bar-btn {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }

    .lightbox-bar-close {
        width: 56px;
        height: 56px;
    }

    .lightbox-position {
        font-size: 0.9rem;
        min-width: 50px;
    }
}

/* Landscape Mode - Taller Images */
@media (orientation: landscape) {
    .lightbox-content {
        max-height: calc(100vh - 70px);
    }

    .lightbox-bottom-bar {
        height: 70px;
    }
}

/* Desktop - Enhanced Hover States */
@media (hover: hover) and (pointer: fine) {
    .lightbox-bar-btn {
        border-width: 1px;
    }

    .lightbox-bar-btn:hover {
        box-shadow: 0 4px 12px rgba(183, 110, 121, 0.4);
    }
}



/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: var(--section-padding) 0;
    background: var(--marble-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

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

.info-card {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

.info-card h3 {
    font-size: 1.6rem;
    color: var(--deep-charcoal);
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
}

.info-card p {
    color: var(--text-gray);
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

.info-card strong {
    color: var(--text-dark);
    font-weight: 600;
}

.info-card a {
    color: var(--rose-gold);
    text-decoration: none;
    transition: var(--transition);
}

.info-card a:hover {
    color: var(--soft-gold);
}

.contact-cta {
    background: linear-gradient(135deg, var(--deep-charcoal) 0%, #3a3a3a 100%);
    padding: 4rem 3rem;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--primary-white);
    box-shadow: var(--shadow-md);
}

.cta-text {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    margin-bottom: 2.5rem;
    color: var(--primary-white);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-white);
    font-size: 1.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--rose-gold);
    transform: translateY(-3px);
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--rose-gold);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-location {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
}

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 968px) {
    :root {
        --section-padding: 70px;
    }

    .nav-brand .logo {
        height: 140px;
    }

    /* Mobile-friendly gallery filters */
    .gallery-filters {
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        gap: 0.8rem;
        padding: 0 0 0.8rem 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--rose-gold) var(--light-gray);
    }

    .gallery-filters::-webkit-scrollbar {
        height: 6px;
    }

    .gallery-filters::-webkit-scrollbar-track {
        background: var(--light-gray);
        border-radius: 10px;
    }

    .gallery-filters::-webkit-scrollbar-thumb {
        background: var(--rose-gold);
        border-radius: 10px;
    }

    .filter-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #d4b5b0 !important;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    /* Mobile hero section - ensure content overlays image */
    .hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 80px 15px 40px;
    }

    /* Mobile hero image optimization */
    .hero-main-image {
        filter: brightness(0.5);
        object-position: center center;
    }

    /* Hero content with semi-transparent background for readability */
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(8px);
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 2px;
        margin-bottom: 0.8rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .hero-location {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

    /* Tablet - 2 column masonry */
    .grid-sizer,
    .gallery-item {
        width: calc(50% - 15px) !important;
    }

    /* Responsive simple gallery */
    .gallery-grid-simple {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 600px) {
    :root {
        --section-padding: 50px;
    }

    /* Vertical Stack Layout - Logo above Hamburger */
    .navbar {
        height: auto !important;
        max-height: none !important;
        min-height: 150px;
    }

    .navbar .container {
        flex-direction: column !important;
        align-items: center !important;
        padding: 0.75rem 1rem !important;
        gap: 0.75rem;
        max-height: none;
    }

    .nav-brand {
        order: 1;
        width: 100%;
        text-align: center;
        max-width: 100% !important;
        overflow: visible;
        flex: none;
        min-width: auto;
        padding: 0.5rem 0;
    }

    .nav-brand a {
        max-width: 100%;
        justify-content: center;
    }

    .nav-brand .logo {
        height: 112px !important;
        width: auto !important;
        max-width: 90% !important;
        margin: 0 auto;
        display: block !important;
        object-fit: contain;
        object-position: center center;
    }

    .hamburger {
        order: 2;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        padding: 12px !important;
        min-height: 44px !important;
        flex-shrink: 0 !important;
        min-width: auto !important;
    }

    .nav-menu {
        order: 3;
        top: 160px !important;
    }

    /* Extra small mobile - more compact hero */
    .hero {
        padding-top: 170px !important;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 30px;
    }

    .hero-content {
        padding: 1.5rem 1rem;
        background: rgba(255, 255, 255, 0.1);
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.6rem;
    }

    .hero-tagline {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

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

    .hero-buttons {
        gap: 0.8rem;
        width: 100%;
    }

    .hero-buttons .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
    }

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

    .lead {
        font-size: 1.4rem;
    }

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

    .grid-sizer,
    .gallery-item {
        width: 100% !important;
    }

    /* Mobile simple gallery - single column */
    .gallery-grid-simple {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .ibe-features {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 1.1rem 2.5rem;
        font-size: 1rem;
    }
}

/* ============================================
   Booking Page Styles
   ============================================ */
.booking-page-section {
    padding: 180px 0 50px;
    min-height: 100vh;
    background: var(--marble-gray);
}

.booking-page-section .section-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.booking-page-subtitle {
    text-align: center;
    font-size: 10pt;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 3rem;
    font-weight: 400;
}

.booking-iframe-container {
    width: 100%;
    max-width: 100%;
    margin: 2rem 0 0 0;
    background: var(--primary-white);
    box-shadow: var(--shadow-lg);
    overflow: visible;
    position: relative;
}

.booking-iframe-container iframe {
    width: 100%;
    min-height: 2000px;
    height: 2000px;
    border: none;
    display: block;
    overflow: hidden;
    pointer-events: auto;
}

@media (max-width: 968px) {
    .booking-page-section {
        padding: 150px 0 50px;
    }

    .booking-iframe-container {
        margin: 1.5rem 0 0 0;
    }

    .booking-iframe-container iframe {
        min-height: 1800px;
        height: 1800px;
    }
}

@media (max-width: 600px) {
    .booking-page-section {
        padding: 220px 0 40px;
    }

    .booking-page-subtitle {
        margin-bottom: 2rem;
    }

    .booking-iframe-container {
        margin: 1rem 0 0 0;
    }

    .booking-iframe-container iframe {
        min-height: 1600px;
        height: 1600px;
    }
}
