/* ================================================
   CSS VARIABLES
   ================================================ */
:root {
    /* Colors */
    --color-primary: #000000;
    --color-primary-hover: #8764A6;
    --color-secondary: #5F536B;
    --color-text: #000000;
    --color-white: #f8f7f7;
    --color-bg: #f9f9f9;
    --color-button: #8764A6;
    --color-purple: #e0baff;

    /* Typography */
    --font-family: serif;
    --font-weight: 100;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Effects */
    --border-radius: 0;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 3px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 6px 25px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 3px 5px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ================================================
   BASE STYLES
   ================================================ */
@font-face {
  font-family: 'Edwardian Script ITC';
  src: url('../fonts/edwardianscriptitc.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

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

body {
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}

/* No underline on hover for navigation and special links */
.nav-menu a,
.nav-menu a:hover,
.dropdown-menu a:hover,
.btn:hover,
.hero-button:hover,
.gallery-item:hover,
.gallery-item a:hover,
.service-card a:hover,
.logo a:hover {
    text-decoration: none;
}

iframe {
    border: 0;
}

/* ================================================
   UTILITY CLASSES
   ================================================ */

/* Unified Header Styles (except hero) */
h1, h2, h3 {
    font-size: 2.5rem;
    font-weight: 100;
    margin-bottom: var(--spacing-sm);
}

h3 {
    font-size: 2rem;
}

/* Hero headers stay different */
.page-hero h1 {
    font-size: 3rem;
    letter-spacing: 3px;
}

/* Container utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}


/* ================================================
   HEADER
   ================================================ */
.site-header {
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo {
    order: 1;
}

.logo a {
    display: block;
}

.logo img {
    height: 80px;
    width: auto;
}

/* Navigation */
.main-nav {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu a {
    color: var(--color-text);
    font-weight: 100;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"],
.nav-menu a.active {
    color: var(--color-primary-hover);
    border-bottom-color: var(--color-primary-hover);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Dropdown menu - Desktop only */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: var(--shadow-md);
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0;
    padding-top: 0.5rem;
    z-index: 1000;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-text);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: var(--color-bg);
    color: var(--color-primary-hover);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hide mobile-only items on desktop */
.mobile-only {
    display: none;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    background-color: #000;
    height: calc(100vh - 120px);
}

.hero-image {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 5;
    max-width: 700px;
    width: 90%;
}

.welcome {
    font-size: 3rem;
    font-weight: 100;
    line-height: 1;
    margin-bottom: var(--spacing-md);
    font-family: "Edwardian Script ITC", cursive;
}

.hero-title {
    font-size: 5rem;
    font-weight: 100;
    line-height: 1;
    margin-bottom: var(--spacing-xl);
}

.hero-description {
    margin-bottom: var(--spacing-xl);
    font-size: 1.2rem;
}

.hero-button {
    padding: 1rem 2.5rem;
    color: var(--color-bg);
    background-color: var(--color-button);
}

.hero-button,
.btn {
    display: inline-block;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.hero-button:hover {
    background-color: white;
    color: var(--color-primary);
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about {
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-xl) var(--spacing-md);
    background-color: transparent;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-left {
    padding-right: 2rem;
}

.about-left p {
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    text-align: justify;
}

.about-title,
.about-right h3 {
    margin-bottom: var(--spacing-md);
    font-size: 1.8rem;
    line-height: normal;
}

.about-title {
    text-align: left;
}


.about-right p {
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    text-align: justify;
}


.highlight {
    font-weight: 600;
}

.about-image {
    max-width: 1200px;
    margin: var(--spacing-lg) auto 0;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: var(--shadow-md);
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(to bottom, #d8d2e6 0%, #d8d2e6 30%, transparent 30%);
}

.services-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.services-subtitle {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 300;
    padding: 1.5rem;
    margin: 0;
    text-align: center;
}

.card-image {
    height: 300px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.card-content {
    padding: 2rem 1.5rem;
    text-align: center;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.btn {
    padding: 0.75rem 4rem;
    background: var(--color-button);
    color: var(--color-white);
    border: 2px solid var(--color-button);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn:hover {
    background: var(--color-white);
    color: var(--color-text);
    border-color: var(--color-text);
}

/* ================================================
   CONTACT INFO SECTION (Homepage)
   ================================================ */
.contact-section {
    padding: var(--spacing-lg) var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.leaf-decoration {
    display: flex;
    justify-content: center;
    margin: var(--spacing-md) 0;
}

.leaf-decoration img {
    height: 40px;
    width: auto;
}

.contact-title {
    /* Inherits unified h2 styling */
    margin: var(--spacing-lg) 0;
}

.contact-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin: var(--spacing-lg) 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1rem;
}

.icon,
.contact-icon {
    color: var(--color-button);
}

.icon {
    font-size: 1.3em;
}

.separator {
    border: none;
    border-top: 1px solid #ccc;
    margin: var(--spacing-xl) auto;
    max-width: 1200px;
}

.map-hours-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-container {
    width: 100%;
}

.map-container iframe {
    border-radius: var(--border-radius);
    width: 572px;
    height: 330px
}

.hours-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
}

/* ================================================
   PAGE HEADERS
   ================================================ */
.page-header,
.page-hero {
    text-align: center;
    background-color: transparent;
    padding: var(--spacing-lg) var(--spacing-md);
}

.page-header h1,
.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 100;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0;
}

.page-header .subtitle,
.page-hero .subtitle {
    color: var(--color-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================================
   CONTACT PAGE HERO - CLASSIC SERIF
   ================================================ */
body.contact-page .page-hero {
    position: relative;
}



body.contact-page .page-hero .subtitle {
    padding-bottom: var(--spacing-xs);
}

/* ================================================
   CONTACT PAGE STYLES
   ================================================ */
.contact-page-section {
    padding: 20px 20px;
    min-height: 300px;
}

.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Contact Info Cards Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
    width: 100%;
}

.contact-info-card {
    background-color: #ffffff;
    padding: 40px 25px;
    text-align: center;
    border-radius: 0;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}


.contact-icon {
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon i,
.contact-icon svg {
    font-size: 48px;
    max-width: 100%;
    max-height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover)
}

.contact-info-card h3 {
    /* Inherits unified h3 styling */
    margin-top: 0;
    text-transform: none;
    font-size:1.5rem;
    position: relative;
    padding-bottom: 12px;
}

.contact-info-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: #8764A6;
}

.contact-info-card p {
    font-size: 1rem;
    line-height: 1.9;
    color: #3a3a3a;
    margin: 8px 0;
}

/* Contact Map and Info Wrapper */
.contact-map-info-wrapper {
    display: flex;
    gap: 80px;
    align-items: stretch;
    margin-top: 50px;
    padding: 40px;
    border-radius: 0;
    justify-content: center;
}

/* Contact Map Container */
.contact-map-container {
    flex: 0 1 calc(50% - 40px);
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.contact-map-container h2 {
    /* Inherits unified h2 styling */
    margin-bottom: 25px;
    text-transform: none;
    text-align: left;
    position: relative;
    padding-bottom: 15px;
    font-size: 1.8rem;
}

.contact-map-container h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    border-radius: 2px;
}

/* Map Container */
.map-wrapper {
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    flex: 1 1 auto;
    min-height: 450px;
    display: flex;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}
/* Additional Info Section */
.contact-additional-info {
    flex: 0 1 calc(50% - 40px);
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    position: relative;
}

.contact-additional-info h2 {
    margin-bottom: 25px;
    text-transform: none;
    letter-spacing: 1px;
    text-align: left;
    position: relative;
    margin-left: 0;
    padding-bottom: 15px;
    font-size: 1.8rem;
}



.info-block {
    padding: 30px 35px;
    position: relative;
    transition: all 0.3s ease;
    background: #ffffff;
    border-radius: 0;
    margin-bottom: 18px;
    margin-left: 0;
    border-left: 4px solid #8764A6;
    box-shadow: var(--shadow-card);
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
    border-left-color: #B794C6;
}

.info-block h3 {
    /* Inherits unified h3 styling */
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0;
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
}

.info-block p {
    text-align: left;
    padding-bottom: 0;
    margin-bottom: 0;
    line-height: 1.7;
}

/* ================================================
   GALLERY SECTION
   ================================================ */
.gallery {
    padding: var(--spacing-lg) var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-filters {
    text-align: center;
    margin-bottom: 2rem;
}

.filter-btn {
    background-color: var(--color-white);
    color: var(--color-text);
    border: 2px solid var(--color-primary);
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

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

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

.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 300px;
    background-color: #f0f0f0;
}


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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.2s ease;
}

.gallery-item img.loaded {
    opacity: 1;
}

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

.gallery-item.hidden {
    display: none;
}

/* ================================================
   LIGHTBOX
   ================================================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(155, 117, 193, 0.8);
    color: white;
    border: none;
    font-size: 3rem;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10000;
    line-height: 1;
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    line-height: 1;
}

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

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

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(174, 130, 219, 0.9);
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: var(--spacing-lg) var(--spacing-md);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.footer-column {
    text-align: left;
}

.footer-column h3 {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 100;
    margin-bottom: 1rem;
}

.footer-column p,
.footer-column ul,
.footer-column dl {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--color-white);
}

.footer-column a:hover {
    color: var(--color-purple);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column dt {
    font-weight: 100;
    margin-top: 0.5rem;
}

.footer-column dd {
    margin-left: 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

/* Height-based responsive for hero section */
@media (max-height: 700px) {
    .hero {
        height: calc(100vh - 100px);
    }

    .welcome {
        font-size: 2rem;
        margin-bottom: var(--spacing-sm);
    }

    .hero-title {
        font-size: 3rem;
        margin-bottom: var(--spacing-md);
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }

    .hero-button {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-height: 600px) {
    .hero {
        height: calc(100vh - 80px);
        min-height: 400px;
    }

    .hero-content {
        max-width: 600px;
    }

    .welcome {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: var(--spacing-sm);
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: var(--spacing-sm);
    }

    .hero-button {
        padding: 0.6rem 1.75rem;
        font-size: 0.85rem;
    }
}

@media (max-height: 500px) {
    .hero {
        height: auto;
        min-height: 350px;
        padding: var(--spacing-md) 0;
    }

    .welcome {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .hero-button {
        padding: 0.5rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* Combined width and height for small resolutions like 800x600 */
@media (max-width: 900px) and (max-height: 700px) {
    .hero {
        height: calc(100vh - 90px);
        min-height: 380px;
    }

    .welcome {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: var(--spacing-sm);
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: var(--spacing-sm);
    }

    .hero-button {
        padding: 0.65rem 1.85rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) and (max-height: 600px) {
    .hero {
        height: calc(100vh - 70px);
        min-height: 350px;
    }

    .hero-content {
        max-width: 550px;
    }

    .welcome {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.85rem;
    }

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.35;
        margin-bottom: 0.85rem;
    }

    .hero-button {
        padding: 0.55rem 1.6rem;
        font-size: 0.8rem;
    }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .hero {
        height: calc(100vh - 110px);
    }

    .header-container {
        padding: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .welcome h2 {
        font-size: 2rem;
    }

    .page-header h1,
    .page-hero h1 {
        font-size: 2rem;
    }

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

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

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-map-info-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .contact-map-container {
        padding: 0;
        flex: none;
    }

    .map-wrapper {
        height: 450px;
        min-height: 400px;
    }

    .map-wrapper iframe {
        width: 100%;
        height: 100%;
    }

    .contact-map-container h2,
    .contact-additional-info h2 {
        font-size: 1.6rem;
    }

    .contact-additional-info {
        padding: 0;
    }

    .info-block {
        margin-bottom: 15px;
        padding: 25px;
    }

    .info-block h3 {
        font-size: 1.2rem;
    }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
    .header-container {
        flex-direction: column;
        align-items: stretch;
    }

    .logo {
        text-align: center;
    }

    .logo img {
        height: 50px;
        margin: 0 auto;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .main-nav {
        width: 100%;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        display: none;
        width: 100%;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
    }

    /* Hide dropdown on mobile, show individual items */
    .dropdown {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .hero {
        height: calc(100vh - 90px);
    }

    .hero-image {
        height: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-button {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-left {
        padding-right: 0;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .page-header h1,
    .page-hero h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .page-header .subtitle,
    .page-hero .subtitle {
        font-size: 1rem;
    }

    .page-header,
    .page-hero {
        padding: 40px 15px;
    }

    .service-cards,
    .gallery-grid,
    .contact-info-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        width: 330px;
        height: 330px;
    }

    .map-hours-container {
        grid-template-columns: 1fr;
    }

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

    /* Contact page mobile */
    .contact-page-section {
        padding: 40px 15px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-info-card {
        padding: 25px 15px;
        min-height: 150px;
    }

    .contact-info-card h3 {
        font-size: 1.1rem;
    }

    .contact-map-info-wrapper {
        gap: 25px;
        padding: 20px;
    }

    .contact-map-container {
        padding: 0;
    }

    .contact-additional-info {
        padding: 0;
    }

    .info-block {
        padding: 20px;
        margin-bottom: 15px;
    }

    .info-block:hover {
        transform: translateX(3px);
    }

    .info-block h3 {
        font-size: 1.15rem;
    }

    .contact-map-container h2,
    .contact-additional-info h2 {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .contact-map-container h2::after,
    .contact-additional-info h2::after {
        width: 50px;
    }

    .contact-map-container {
        padding: 0;
        flex: none;
    }

    .map-wrapper {
        min-height: 350px;
        height: 400px;
    }

    .map-wrapper iframe {
        width: 100%;
        height: 100%;
    }
}

/* ================================================
   PRINT STYLES
   ================================================ */
@media print {
    /* Basic print setup */
    * {
        box-shadow: none !important;
        text-shadow: none !important;
        transition: none !important;
    }

    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
        line-height: 1.4;
    }

    /* Hide navigation and interactive elements */
    .site-header,
    .menu-toggle,
    .nav-menu,
    .main-nav,
    .lightbox,
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        display: none !important;
    }

    /* Hide all buttons and interactive elements */
    .btn,
    .hero-button,
    .filter-btn,
    button {
        display: none !important;
    }

    /* Hide hero section (large decorative image) */
    .hero,
    .hero-image,
    .hero-content {
        display: none !important;
    }

    /* Hide decorative elements */
    .leaf-decoration {
        display: none !important;
    }

    /* Hide maps (not functional in print) */
    .map-container,
    .map-wrapper,
    .contact-map-container,
    iframe {
        display: none !important;
    }

    /* Hide service card images and buttons, keep titles */
    .service-card .card-image {
        display: none !important;
    }

    .service-card .card-content p {
        display: block;
        font-size: 10pt;
        margin: 0.25rem 0;
    }

    .service-card .card-content .btn {
        display: none !important;
    }

    /* Hide about page image */
    .about-image {
        display: none !important;
    }

    /* Page structure */
    main {
        padding: 0 !important;
        margin: 0 !important;
    }

    section {
        padding: 0 !important;
        margin: 0 !important;
        page-break-inside: auto;
    }

    .contact-page section {
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Ensure gallery sections have no breaks */
    .gallery,
    section.gallery,
    section.page-header {
        padding: 0 !important;
        margin: 0 !important;
        page-break-before: auto !important;
        page-break-after: auto !important;
    }

    /* Headers and titles */
    h1 {
        font-size: 18pt;
        margin: 0.5rem 0 !important;
        page-break-after: avoid;
    }

    h2 {
        font-size: 14pt;
        margin: 0.4rem 0 !important;
        page-break-after: avoid;
    }

    h3 {
        font-size: 12pt;
        margin: 0.3rem 0 !important;
        page-break-after: avoid;
    }

    p {
        margin: 0.25rem 0 !important;
        orphans: 3;
        widows: 3;
    }

    /* Page headers */
    .page-hero,
    .page-header {
        padding: 0.25rem 0 !important;
        margin: 0 !important;
        border-bottom: none !important;
    }

    .page-hero h1,
    .page-header h1 {
        font-size: 18pt;
        margin: 0 !important;
    }

    .subtitle {
        font-size: 11pt;
        margin: 0.1rem 0 0.2rem 0 !important;
    }

    /* Contact page header - extra compact */
    .contact-page .page-hero {
        padding: 0.25rem 0 !important;
        margin: 0 !important;
        border-bottom: none !important;
    }

    .contact-page .page-hero h1 {
        margin: 0 !important;
        font-size: 18pt;
    }

    .contact-page .page-hero .subtitle {
        margin: 0.1rem 0 0.2rem 0 !important;
    }

    /* About section */
    .about-container {
        display: block !important;
        margin: 0.5rem 0 !important;
    }

    .about-left,
    .about-right {
        padding: 0 !important;
        margin-bottom: 0.5rem !important;
    }

    /* Services section */
    .services {
        padding: 0.5rem 0 !important;
    }

    .services-header {
        margin-bottom: 0.5rem !important;
    }

    .services-title {
        font-size: 16pt;
    }

    .services-subtitle {
        font-size: 10pt;
    }

    .service-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem !important;
    }

    .service-card {
        border: 1px solid #000;
        padding: 0.5rem !important;
        margin: 0 !important;
        page-break-inside: avoid;
    }

    .service-card h3 {
        font-size: 12pt;
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0.2rem !important;
    }

    /* Contact section on homepage */
    .contact-section {
        padding: 0.5rem 0 !important;
        margin-top: 1rem !important;
        border-top: 2px solid #000;
    }

    .contact-title {
        font-size: 16pt;
        margin-bottom: 0.5rem !important;
    }

    .contact-details {
        display: block !important;
        margin: 0.5rem 0 !important;
    }

    .contact-item {
        display: block;
        margin: 0.25rem 0 !important;
        font-size: 11pt;
    }

    .contact-item .icon {
        display: none;
    }

    /* Hours on homepage */
    .hours-container {
        margin: 0.5rem 0 !important;
        padding: 0.5rem !important;
        border: 1px solid #000;
    }

    .hours-row {
        display: flex;
        justify-content: space-between;
        margin: 0.25rem 0 !important;
        font-size: 11pt;
    }

    /* Contact page specific */
    .contact-page-section {
        padding: 0 !important;
        margin: 0 !important;
    }

    .contact-page-container {
        padding: 0 !important;
        margin: 0 !important;
    }

    .contact-info-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.3rem !important;
        margin: 0.2rem 0 0 0 !important;
        padding: 0 !important;
    }

    .contact-info-card {
        border: 1px solid #000;
        padding: 0.3rem !important;
        page-break-inside: avoid;
    }

    .contact-info-card .contact-icon {
        display: none !important;
    }

    .contact-info-card h3 {
        font-size: 11pt;
        border-bottom: none;
        padding-bottom: 0;
        margin: 0 0 0.15rem 0 !important;
    }

    .contact-info-card p {
        margin: 0.1rem 0 !important;
        font-size: 10pt;
    }

    .contact-additional-info {
        padding: 0 !important;
        margin-top: 0.5rem !important;
    }

    .info-block {
        border: 1px solid #ccc;
        padding: 0.3rem !important;
        margin: 0.3rem 0 !important;
        page-break-inside: avoid;
    }

    .info-block h3 {
        font-size: 10pt;
        margin: 0 0 0.15rem 0 !important;
    }

    .info-block p {
        margin: 0.1rem 0 !important;
        font-size: 9pt;
    }

    /* Gallery pages - CRITICAL: override all spacing */
    section.gallery,
    .gallery {
        padding: 0 !important;
        margin: 0 !important;
        page-break-before: auto !important;
        page-break-after: auto !important;
        min-height: 0 !important;
        height: auto !important;
        display: block !important;
    }

    section.page-header,
    .page-header {
        padding: 0.2cm 0 0.2cm 0 !important;
        margin: 0 !important;
        border-bottom: none !important;
        min-height: 0 !important;
        height: auto !important;
        max-height: 2cm !important;
        background: none !important;
        page-break-after: avoid !important;
        page-break-inside: avoid !important;
        display: block !important;
        text-align: center !important;
        overflow: visible !important;
    }

    .page-header h1 {
        margin: 0 !important;
        font-size: 18pt !important;
        padding: 0 !important;
        line-height: 1.1 !important;
        display: block !important;
    }

    .page-header .subtitle {
        margin: 0.1rem 0 0 0 !important;
        padding: 0 !important;
        font-size: 11pt !important;
        line-height: 1.2 !important;
        max-width: none !important;
        display: block !important;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.3rem !important;
        margin: 0 !important;
        padding: 0 !important;
        page-break-inside: auto;
    }

    .gallery-item {
        page-break-inside: avoid;
        border: 1px solid #ccc;
        padding: 0.15rem;
        margin: 0;
    }

    .gallery-item img {
        display: block;
        max-width: 100%;
        height: auto;
    }

    /* Hide all images except gallery */
    img {
        display: none;
    }

    .gallery-item img,
    .gallery-grid img {
        display: block !important;
    }

    /* Footer - show essential contact info only */
    .site-footer {
        background: #fff !important;
        color: #000 !important;
        padding: 1rem 0 !important;
        margin-top: 1rem !important;
        border-top: 3px solid #000;
        page-break-before: avoid;
    }

    .footer-container {
        display: block !important;
        margin: 0 !important;
    }

    .footer-column {
        margin-bottom: 0.75rem !important;
        page-break-inside: avoid;
    }

    .footer-column h3 {
        font-size: 12pt;
        font-weight: bold;
        color: #000 !important;
        margin-bottom: 0.25rem !important;
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-column p,
    .footer-column li,
    .footer-column dt,
    .footer-column dd {
        font-size: 10pt;
        margin: 0.15rem 0 !important;
        color: #000 !important;
    }

    .footer-column a {
        color: #000 !important;
        text-decoration: none;
    }

    /* Show URLs for important links in footer */
    .footer-column a[href^="tel"]:after {
        content: "";
    }

    .footer-column a[href^="mailto"]:after {
        content: "";
    }

    .footer-column a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 9pt;
        color: #666;
    }

    .footer-bottom {
        margin: 0.5rem 0 0 !important;
        padding: 0.5rem 0 0 !important;
        border-top: 1px solid #ccc;
        text-align: center;
        font-size: 9pt;
    }

    /* Utility */
    .separator {
        border: 0;
        border-top: 1px solid #ccc;
        margin: 0.5rem 0 !important;
    }

    /* Ensure proper page breaks */
    .about,
    .services,
    .contact-section,
    .gallery {
        page-break-inside: avoid;
    }
}
