/* =====================================================
   Danny Peterson Photography - Modern CSS
   Built from scratch with editorial aesthetics
   ===================================================== */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* === CSS VARIABLES === */
:root {
    /* Colors */
    --brand-blue: #50B8E7;
    --deep-navy: #1a2332;
    --warm-charcoal: #3a3a3a;
    --soft-sand: #f5f1eb;
    --warm-white: #fefdfb;
    --sage-green: #8b9d83;
    --terracotta: #c97855;
    --gold-accent: #d4a574;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === GLOBAL RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--warm-white);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--deep-navy);
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-md);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-blue), transparent);
    opacity: 0.6;
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 600;
}

p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--warm-charcoal);
}

a {
    color: var(--brand-blue);
    text-decoration: none;
    transition: all var(--transition-fast);
}

a:hover {
    color: var(--deep-navy);
}

/* === HEADER === */
header {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(80, 184, 231, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-container img {
    transition: transform var(--transition-smooth);
}

.header-container img:hover {
    transform: scale(1.05);
}

.admin-icon {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--deep-navy);
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-blue);
    transition: width var(--transition-smooth);
}

nav a:hover {
    color: var(--brand-blue);
}

nav a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-smooth);
}

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

.dropdown-content a {
    display: block;
    padding: 1rem 1.5rem;
    text-transform: capitalize;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.admin-link {
    font-size: 1.5rem;
    opacity: 0.6;
    transition: all var(--transition-fast);
}

.admin-link:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* === BANNER SLIDER === */
.banner-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
    background: var(--deep-navy);
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* High-resolution placeholder images for each slide */
.slide-1 {
    background-image: url('img/slide-1.jpg');
}

.slide-2 {
    background-image: url('img/slide-2.jpg');
}

.slide-3 {
    background-image: url('img/slide-3.jpg');
}

.slide-4 {
    background-image: url('img/slide-4.jpg');
}

.slide-5 {
    background-image: url('img/slide-5.jpg');
}

.slide-6 {
    background-image: url('img/slide-6.jpg');
}

.slide-7 {
    background-image: url('img/slide-7.jpg');
}


.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.7) 0%, rgba(80, 184, 231, 0.3) 100%);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    width: 90%;
    max-width: 900px;
    animation: slideContentFade 1s ease-out;
}

@keyframes slideContentFade {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.slide-content h1 {
    color: white;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.slide-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    border-color: var(--brand-blue);
    transform: scale(1.3);
}

/* === MAIN CONTENT === */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

/* === TESTIMONIALS === */
.testimonial {
    max-width: 900px;
    margin: var(--spacing-xl) auto;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--soft-sand) 0%, var(--warm-white) 100%);
    border-radius: 16px;
    border-left: 4px solid var(--brand-blue);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-family: var(--font-display);
    font-size: 120px;
    color: rgba(80, 184, 231, 0.1);
    line-height: 1;
    z-index: 0;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.9;
    color: var(--deep-navy);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--brand-blue);
    text-align: right;
    letter-spacing: 0.05em;
}

/* === GALLERY SECTION === */
.gallery-section {
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(to bottom, var(--warm-white), var(--soft-sand));
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
}

.filter-btn {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    cursor: pointer;
    border-radius: 50px;
    transition: all var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.filter-btn:hover {
    background: var(--brand-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.filter-btn.active {
    background: var(--brand-blue);
    color: white;
    box-shadow: var(--shadow-sm);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    animation: lightboxZoom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes lightboxZoom {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

/* === PRICING SECTION === */
.pricing-section {
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-xl);
    background: var(--warm-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.pricing-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.pricing-card:hover .pricing-image {
    transform: scale(1.05);
}

.pricing-content {
    padding: 2rem;
}

.pricing-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-price span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--warm-charcoal);
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    color: var(--warm-charcoal);
    position: relative;
    padding-left: 1.8rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.book-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--brand-blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-transform: uppercase;
}

.book-button:hover {
    background: var(--deep-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === ABOUT SECTION === */
.about-section {
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(to bottom, var(--soft-sand), var(--warm-white));
}

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

.about-intro {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    color: var(--deep-navy);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

/* Table-based layout for about section */
.about-table {
    width: 100%;
    max-width: 1200px;
    margin: -40px auto 0;
    border-collapse: collapse;
}

.about-table:first-of-type {
    margin-top: 0;
}

.about-table-reverse {
    margin-top: -60px;
}

.about-image-cell {
    padding: 20px;
}

.about-text-cell {
    padding: 60px 20px 20px;
    vertical-align: top;
}

.about-table-reverse .about-text-cell {
    padding: 20px 20px 60px;
}

.about-table-reverse .about-image-cell {
    padding: 60px 20px 20px;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    right: 20px;
    bottom: -20px;
    border: 3px solid var(--brand-blue);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}

.about-table-reverse .about-image::after {
    top: -20px;
    left: 20px;
    right: -20px;
    bottom: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    padding: 0;
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    color: var(--deep-navy);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--warm-charcoal);
}

.about-text em {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--deep-navy);
}

.about-journey {
    max-width: 900px;
    margin: var(--spacing-lg) auto;
    text-align: center;
    padding-top: var(--spacing-md);
}

.about-journey p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: var(--spacing-lg);
}

.signature {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.signature img {
    max-width: 300px;
    height: auto;
    opacity: 0.8;
}

/* Legacy grid support for backwards compatibility */
.about-row {
    display: grid;
    grid-template-columns: 35% 60%;
    gap: 5%;
    align-items: start;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.about-row:nth-child(even) {
    grid-template-columns: 60% 35%;
    gap: 5%;
}

.about-row:nth-child(even) .about-image {
    order: 2;
    transform: translateY(-60px);
}

.about-row:nth-child(even) .about-text {
    order: 1;
    transform: translateY(40px);
}

.about-row:nth-child(odd) .about-image {
    transform: translateY(40px);
}

.about-row:nth-child(odd) .about-text {
    transform: translateY(-40px);
}

.about-row.reverse {
    direction: ltr;
}

.about-row.reverse > * {
    direction: ltr;
}

/* === CONTACT SECTION === */
.contact-section {
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-xl);
    background: var(--warm-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--brand-blue);
    transition: all var(--transition-smooth);
}

.contact-info-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-info-item h3 {
    font-size: 1.2rem;
    color: var(--deep-navy);
    margin-bottom: 0.8rem;
}

.contact-info-item p {
    font-size: 1rem;
    color: var(--warm-charcoal);
    margin-bottom: 0;
}

.contact-info-item a {
    color: var(--brand-blue);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-info-item a:hover {
    color: var(--deep-navy);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 2rem;
    color: var(--deep-navy);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(80, 184, 231, 0.2);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--soft-sand);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(80, 184, 231, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--brand-blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-transform: uppercase;
}

.submit-button:hover {
    background: var(--deep-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === FOOTER === */
footer {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #0f1419 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-wide {
    grid-column: 1;
}

.footer-narrow {
    grid-column: 0.1;
}

.footer-social {
    text-align: right;
}

.footer-social h3 {
    text-align: right;
}

.footer-social .social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
}

.footer-social .social-links a {
    transition: transform var(--transition-fast);
}

.footer-social .social-links a:hover {
    transform: translateY(-3px);
}

.footer-section h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--brand-blue);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .about-table,
    .about-table-reverse {
        margin-top: 0 !important;
    }
    
    .about-table tr,
    .about-table-reverse tr {
        display: block;
    }
    
    .about-table td,
    .about-table-reverse td {
        display: block;
        width: 100% !important;
        padding: 20px !important;
    }
    
    .about-image {
        max-width: 500px;
    }
    
    .about-row,
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .about-row:nth-child(even),
    .about-row:nth-child(odd) {
        grid-template-columns: 1fr;
    }
    
    .about-row:nth-child(even) .about-image,
    .about-row:nth-child(odd) .about-image {
        order: 1;
        transform: translateY(0);
    }
    
    .about-row:nth-child(even) .about-text {
        order: 2;
        transform: translateY(0);
    }
    
    .about-row:nth-child(odd) .about-text {
        transform: translateY(0);
    }
    
    .about-row.reverse {
        direction: ltr;
    }
    
    nav ul {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .banner-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .footer-social {
        text-align: left;
    }
    
    .footer-social h3 {
        text-align: left;
    }
    
    .footer-social .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 2rem;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .about-image::after {
        display: none;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* === PRINT STYLES === */
@media print {
    header,
    footer,
    .banner-slider,
    .gallery-filters,
    .book-button,
    .submit-button {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* === GALLERY SUBCATEGORY MODAL === */
.subcategory-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
}

.subcategory-modal.active {
    display: block;
}

.subcategory-modal-content {
    position: relative;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 2rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 2001;
    transition: all 0.3s;
}

.modal-close:hover {
    color: var(--brand-blue);
    transform: scale(1.1);
}

.subcategory-modal h3 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.subcategory-photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.subcategory-photo-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.3s;
    aspect-ratio: 1;
}

.subcategory-photo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(80, 184, 231, 0.5);
}

.subcategory-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* === GALLERY ITEM STYLES === */
.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

/* === LIGHTBOX CAPTION === */
#lightbox-caption {
    text-align: center;
    color: white;
    font-size: 1.1rem;
    margin-top: 1rem;
    padding: 0 2rem;
}

/* === RESPONSIVE UPDATES === */
@media (max-width: 768px) {
    .subcategory-modal-content {
        padding: 1rem;
    }
    
    .subcategory-photos {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .subcategory-modal h3 {
        font-size: 1.8rem;
        padding-right: 3rem;
    }
    
    .modal-close {
        right: 1rem;
        font-size: 2.5rem;
    }
}
/* Gallery Styles with Optional Caption Overlay */

/* Gallery grid layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Gallery item container */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Gallery cover images */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Placeholder for galleries without cover images */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    animation: placeholderShift 20s linear infinite;
}

@keyframes placeholderShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.placeholder-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* CAPTION OVERLAY - Always visible in lower left corner */
.gallery-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    color: white;
    z-index: 2;
    max-width: 80%;
    pointer-events: none; /* Allows clicks to pass through to parent */
}

/* Gallery title in caption - STANDARD FONT SIZE */
.gallery-item-caption h3 {
    color: white;
    font-size: 1rem; /* Standard font size (16px typically) */
    margin: 0 0 4px 0;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

/* Photo count in caption - SMALL FONT SIZE */
.gallery-item-caption .photo-count {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem; /* Small font size (typically 13-14px) */
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Optional: Full overlay that appears on hover (for description) */
.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay p {
    color: white;
    font-size: 0.95rem;
    text-align: center;
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .placeholder-text {
        font-size: 1.2rem;
    }
    
    .gallery-item-caption {
        padding: 12px 15px;
    }
    
    .gallery-item-caption h3 {
        font-size: 0.95rem;
    }
    
    .gallery-item-caption .photo-count {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item-caption {
        padding: 10px 12px;
    }
    
    .gallery-item-caption h3 {
        font-size: 0.9rem;
    }
}

/* Gallery filter buttons (if you have them) */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #50B8E7;
    color: #50B8E7;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #50B8E7;
    color: white;
}


/* Caption Overlay - MATCHES ADMIN PREVIEW */
.caption-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .caption-overlay {
    opacity: 1;
}

/* Stylized Title - BEBAS NEUE FONT (matches admin) */
.caption-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0 0 10px 0;
    word-wrap: break-word;
}

/* Photo Count */
.caption-count {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* ===== FOOTER STYLES ===== */
.footer-contact {
    flex: 1.2;
    min-width: 300px;
}

.footer-narrow {
    flex: 0.8;
    min-width: 150px;
}

/* ===== PRICING CARD ALIGNMENT ===== */
.pricing-card {
    display: flex;
    flex-direction: column;
}

.pricing-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.book-button {
    margin-top: auto;
}

/* ===== ADMIN 2-COLUMN LAYOUTS ===== */
.two-column-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .two-column-layout {
        grid-template-columns: 1fr;
    }
}

        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700&family=Montserrat:wght@300;400;500;600;700&display=swap');
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background: #f5f1eb;
            color: #3a3a3a;
        }
        
        .main-header {
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid rgba(80, 184, 231, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .header-container img {
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .header-container img:hover {
            transform: scale(1.05);
        }
        
        .admin-badge {
            background: linear-gradient(135deg, #50B8E7 0%, #3da3d5 100%);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            box-shadow: 0 2px 8px rgba(80, 184, 231, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .admin-badge::before {
            content: "🛡️";
        }
        
        .admin-subnav {
            background: #1a2332;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .admin-subnav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .admin-subnav nav {
            display: flex;
            flex: 1;
            justify-content: space-evenly;
            align-items: center;
        }
        
        .admin-subnav nav a {
            padding: 1rem 2rem;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: color 0.3s;
        }
        
        .admin-subnav nav a:hover {
            color: white;
        }
        
        .admin-subnav nav a.active {
            color: white;
            font-weight: 600;
        }
        
        .exit-btn {
            padding: 0.6rem 1.5rem;
            background: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 4px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .exit-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }
        
        .admin-container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem 4rem 2rem;
        }
        
        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            color: #1a2332;
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            text-align: center;
        }
        
        .page-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 3rem;
        }
        
        .alert {
            padding: 1rem 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .alert-success {
            background: #d4edda;
            color: #155724;
            border-left: 4px solid #28a745;
        }
        
        .alert-error {
            background: #f8d7da;
            color: #721c24;
            border-left: 4px solid #dc3545;
        }
        
        .card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
            color: #1a2332;
        }
        
        .card h2 {
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #1a2332;
            font-weight: 600;
        }
        
        .form-group input {
            width: 100%;
            padding: 0.85rem;
            border: 2px solid rgba(80, 184, 231, 0.2);
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Montserrat', sans-serif;
            transition: all 0.3s;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: #50B8E7;
            box-shadow: 0 0 0 3px rgba(80, 184, 231, 0.1);
        }
        
        .btn {
            padding: 0.85rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.95rem;
            font-family: 'Montserrat', sans-serif;
        }
        
        .btn-primary {
            background: #50B8E7;
            color: white;
        }
        
        .btn-primary:hover {
            background: #1a2332;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .btn-danger {
            background: #dc3545;
            color: white;
        }
        
        .btn-danger:hover {
            background: #c82333;
        }
        
        .btn-secondary {
            background: #6c757d;
            color: white;
        }
        
        .btn-secondary:hover {
            background: #5a6268;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        th, td {
            padding: 1.2rem;
            text-align: left;
            border-bottom: 1px solid #e9ecef;
        }
        
        th {
            background: #f5f1eb;
            color: #1a2332;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
        }
        
        tr:hover {
            background: #f8f9fa;
        }
        
        .action-buttons {
            display: flex;
            gap: 0.5rem;
        }
        
        .action-buttons button {
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }
            .admin-subnav-container {
                flex-direction: column;
                gap: 1rem;
            }
            .admin-subnav nav {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
/* =====================================================
   Danny Peterson Photography - Modern CSS
   Built from scratch with editorial aesthetics
   ===================================================== */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* === CSS VARIABLES === */
:root {
    /* Colors */
    --brand-blue: #50B8E7;
    --deep-navy: #1a2332;
    --warm-charcoal: #3a3a3a;
    --soft-sand: #f5f1eb;
    --warm-white: #fefdfb;
    --sage-green: #8b9d83;
    --terracotta: #c97855;
    --gold-accent: #d4a574;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === GLOBAL RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--warm-white);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--deep-navy);
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(0.5rem, 3vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-md);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-blue), transparent);
    opacity: 0.6;
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 600;
}

p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--warm-charcoal);
}

a {
    color: var(--brand-blue);
    text-decoration: none;
    transition: all var(--transition-fast);
}

a:hover {
    color: var(--deep-navy);
}

/* === HEADER === */
header {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(80, 184, 231, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-container img {
    transition: transform var(--transition-smooth);
}

.header-container img:hover {
    transform: scale(1.05);
}

.admin-icon {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--deep-navy);
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-blue);
    transition: width var(--transition-smooth);
}

nav a:hover {
    color: var(--brand-blue);
}

nav a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-smooth);
}

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

.dropdown-content a {
    display: block;
    padding: 1rem 1.5rem;
    text-transform: capitalize;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.admin-link {
    font-size: 1.5rem;
    opacity: 0.6;
    transition: all var(--transition-fast);
}

.admin-link:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* === BANNER SLIDER === */
.banner-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
    background: var(--deep-navy);
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* High-resolution placeholder images for each slide */
.slide-1 {
    background-image: url('img/slide-1.jpg');
}

.slide-2 {
    background-image: url('img/slide-2.jpg');
}

.slide-3 {
    background-image: url('img/slide-3.jpg');
}

.slide-4 {
    background-image: url('img/slide-4.jpg');
}

.slide-5 {
    background-image: url('img/slide-5.jpg');
}

.slide-6 {
    background-image: url('img/slide-6.jpg');
}

.slide-7 {
    background-image: url('img/slide-7.jpg');
}


.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.7) 0%, rgba(80, 184, 231, 0.3) 100%);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    width: 90%;
    max-width: 900px;
    animation: slideContentFade 1s ease-out;
}

@keyframes slideContentFade {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.slide-content h1 {
    color: white;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.slide-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    border-color: var(--brand-blue);
    transform: scale(1.3);
}

/* === MAIN CONTENT === */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

/* === TESTIMONIALS === */
.testimonial {
    max-width: 900px;
    margin: var(--spacing-xl) auto;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--soft-sand) 0%, var(--warm-white) 100%);
    border-radius: 16px;
    border-left: 4px solid var(--brand-blue);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-family: var(--font-display);
    font-size: 120px;
    color: rgba(80, 184, 231, 0.1);
    line-height: 1;
    z-index: 0;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.9;
    color: var(--deep-navy);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--brand-blue);
    text-align: right;
    letter-spacing: 0.05em;
}

/* === GALLERY SECTION === */
.gallery-section {
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(to bottom, var(--warm-white), var(--soft-sand));
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
}

.filter-btn {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    cursor: pointer;
    border-radius: 50px;
    transition: all var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.filter-btn:hover {
    background: var(--brand-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.filter-btn.active {
    background: var(--brand-blue);
    color: white;
    box-shadow: var(--shadow-sm);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    animation: lightboxZoom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes lightboxZoom {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

/* === PRICING SECTION === */
.pricing-section {
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-xl);
    background: var(--warm-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.pricing-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.pricing-card:hover .pricing-image {
    transform: scale(1.05);
}

.pricing-content {
    padding: 2rem;
}

.pricing-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-price span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--warm-charcoal);
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    color: var(--warm-charcoal);
    position: relative;
    padding-left: 1.8rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.book-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--brand-blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-transform: uppercase;
}

.book-button:hover {
    background: var(--deep-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === ABOUT SECTION === */
.about-section {
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(to bottom, var(--soft-sand), var(--warm-white));
}

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

.about-intro {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    color: var(--deep-navy);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

/* Table-based layout for about section */
.about-table {
    width: 100%;
    max-width: 1200px;
    margin: -40px auto 0;
    border-collapse: collapse;
}

.about-table:first-of-type {
    margin-top: 0;
}

.about-table-reverse {
    margin-top: -60px;
}

.about-image-cell {
    padding: 20px;
}

.about-text-cell {
    padding: 60px 20px 20px;
    vertical-align: top;
}

.about-table-reverse .about-text-cell {
    padding: 20px 20px 60px;
}

.about-table-reverse .about-image-cell {
    padding: 60px 20px 20px;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    right: 20px;
    bottom: -20px;
    border: 3px solid var(--brand-blue);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}

.about-table-reverse .about-image::after {
    top: -20px;
    left: 20px;
    right: -20px;
    bottom: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    padding: 0;
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    color: var(--deep-navy);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--warm-charcoal);
}

.about-text em {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--deep-navy);
}

.about-journey {
    max-width: 900px;
    margin: var(--spacing-lg) auto;
    text-align: center;
    padding-top: var(--spacing-md);
}

.about-journey p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: var(--spacing-lg);
}

.signature {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.signature img {
    max-width: 300px;
    height: auto;
    opacity: 0.8;
}

/* Legacy grid support for backwards compatibility */
.about-row {
    display: grid;
    grid-template-columns: 35% 60%;
    gap: 5%;
    align-items: start;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.about-row:nth-child(even) {
    grid-template-columns: 60% 35%;
    gap: 5%;
}

.about-row:nth-child(even) .about-image {
    order: 2;
    transform: translateY(-60px);
}

.about-row:nth-child(even) .about-text {
    order: 1;
    transform: translateY(40px);
}

.about-row:nth-child(odd) .about-image {
    transform: translateY(40px);
}

.about-row:nth-child(odd) .about-text {
    transform: translateY(-40px);
}

.about-row.reverse {
    direction: ltr;
}

.about-row.reverse > * {
    direction: ltr;
}

/* === CONTACT SECTION === */
.contact-section {
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-xl);
    background: var(--warm-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--brand-blue);
    transition: all var(--transition-smooth);
}

.contact-info-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-info-item h3 {
    font-size: 1.2rem;
    color: var(--deep-navy);
    margin-bottom: 0.8rem;
}

.contact-info-item p {
    font-size: 1rem;
    color: var(--warm-charcoal);
    margin-bottom: 0;
}

.contact-info-item a {
    color: var(--brand-blue);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-info-item a:hover {
    color: var(--deep-navy);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 2rem;
    color: var(--deep-navy);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(80, 184, 231, 0.2);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--soft-sand);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(80, 184, 231, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2350B8E7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 3rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--brand-blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-transform: uppercase;
}

.submit-button:hover {
    background: var(--deep-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === FOOTER === */
footer {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #0f1419 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-wide {
    grid-column: 1;
}

.footer-social {
    text-align: right;
}

.footer-social h3 {
    text-align: right;
}

.footer-social .social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
}

.footer-social .social-links a {
    transition: transform var(--transition-fast);
}

.footer-social .social-links a:hover {
    transform: translateY(-3px);
}

.footer-section h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--brand-blue);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .about-table,
    .about-table-reverse {
        margin-top: 0 !important;
    }
    
    .about-table tr,
    .about-table-reverse tr {
        display: block;
    }
    
    .about-table td,
    .about-table-reverse td {
        display: block;
        width: 100% !important;
        padding: 20px !important;
    }
    
    .about-image {
        max-width: 500px;
    }
    
    .about-row,
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .about-row:nth-child(even),
    .about-row:nth-child(odd) {
        grid-template-columns: 1fr;
    }
    
    .about-row:nth-child(even) .about-image,
    .about-row:nth-child(odd) .about-image {
        order: 1;
        transform: translateY(0);
    }
    
    .about-row:nth-child(even) .about-text {
        order: 2;
        transform: translateY(0);
    }
    
    .about-row:nth-child(odd) .about-text {
        transform: translateY(0);
    }
    
    .about-row.reverse {
        direction: ltr;
    }
    
    nav ul {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .banner-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .footer-social {
        text-align: left;
    }
    
    .footer-social h3 {
        text-align: left;
    }
    
    .footer-social .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 2rem;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .about-image::after {
        display: none;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* === PRINT STYLES === */
@media print {
    header,
    footer,
    .banner-slider,
    .gallery-filters,
    .book-button,
    .submit-button {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* === GALLERY SUBCATEGORY MODAL === */
.subcategory-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
}

.subcategory-modal.active {
    display: block;
}

.subcategory-modal-content {
    position: relative;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 2rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 2001;
    transition: all 0.3s;
}

.modal-close:hover {
    color: var(--brand-blue);
    transform: scale(1.1);
}

.subcategory-modal h3 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.subcategory-photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.subcategory-photo-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.3s;
    aspect-ratio: 1;
}

.subcategory-photo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(80, 184, 231, 0.5);
}

.subcategory-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* === GALLERY ITEM STYLES === */
.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

/* === LIGHTBOX CAPTION === */
#lightbox-caption {
    text-align: center;
    color: white;
    font-size: 1.1rem;
    margin-top: 1rem;
    padding: 0 2rem;
}

/* === RESPONSIVE UPDATES === */
@media (max-width: 768px) {
    .subcategory-modal-content {
        padding: 1rem;
    }
    
    .subcategory-photos {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .subcategory-modal h3 {
        font-size: 1.8rem;
        padding-right: 3rem;
    }
    
    .modal-close {
        right: 1rem;
        font-size: 2.5rem;
    }
}
/* Gallery Styles with Optional Caption Overlay */

/* Gallery grid layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Gallery item container */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Gallery cover images */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Placeholder for galleries without cover images */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    animation: placeholderShift 20s linear infinite;
}

@keyframes placeholderShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.placeholder-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* CAPTION OVERLAY - Always visible in lower left corner */
.gallery-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    color: white;
    z-index: 2;
    max-width: 80%;
    pointer-events: none; /* Allows clicks to pass through to parent */
}

/* Gallery title in caption - STANDARD FONT SIZE */
.gallery-item-caption h3 {
    color: white;
    font-size: 1rem; /* Standard font size (16px typically) */
    margin: 0 0 4px 0;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

/* Photo count in caption - SMALL FONT SIZE */
.gallery-item-caption .photo-count {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem; /* Small font size (typically 13-14px) */
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Optional: Full overlay that appears on hover (for description) */
.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay p {
    color: white;
    font-size: 0.95rem;
    text-align: center;
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .placeholder-text {
        font-size: 1.2rem;
    }
    
    .gallery-item-caption {
        padding: 12px 15px;
    }
    
    .gallery-item-caption h3 {
        font-size: 0.95rem;
    }
    
    .gallery-item-caption .photo-count {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item-caption {
        padding: 10px 12px;
    }
    
    .gallery-item-caption h3 {
        font-size: 0.9rem;
    }
}

/* Gallery filter buttons (if you have them) */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #50B8E7;
    color: #50B8E7;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #50B8E7;
    color: white;
}

/* === ADMIN MODAL STYLES === */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
}

.modal.active {
    display: block;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: #1a2332;
    text-align: left;
    padding-bottom: 0;
}

.modal-header h2::after {
    display: none;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-modal:hover {
    color: #50B8E7;
    transform: scale(1.1);
}
