/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root Variables */
:root {
    --primary-color: #dc2626;
    --secondary-color: #991b1b;
    --accent-color: #f59e0b;
    --text-primary: #d4af63;
    --text-secondary: #c49a4f;
    --text-light: #a67f3f;
    --background: #111827;
    --background-light: #1f2937;
    --background-dark: #000000;
    --border-color: #374151;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Base Styles */
body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-dark);
    background-image: url('images/stone-bg.avif');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header */
.header {
    background-color: rgba(17, 24, 39, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
    transition: none;
}

/* Ensure header stays dark on scroll */
.header,
.header.scrolled,
.header:hover {
    background-color: rgba(17, 24, 39, 0.98) !important;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text-primary);
}

.brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    position: relative;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 4rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('images/unnamed.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(2px);
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hero-qr-wrap {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.hero-qr {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
    font-size: 2rem;
}

.contact-info strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.contact-info p {
    margin: 0;
    font-size: 0.875rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.125rem;
}

/* About Section */
.about {
    background-image: url('images/flower-bg.avif');
    background-size: cover;
    background-position: 50% 100%;
    background-repeat: repeat;
    position: relative;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(17, 24, 39, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.about-content .section-description {
    text-align: left;
    margin-bottom: 0.9rem;
}

.about-signature {
    margin-top: 0.5rem;
    color: var(--text-primary);
}

.about-image-wrap {
    margin: 0;
    width: 100%;
    min-height: 280px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow);
}

.about-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hours Section */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.hours-card {
    background-color: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background-color: rgba(55, 65, 81, 0.6);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-item span:first-child {
    font-weight: 500;
    color: var(--text-primary);
}

.hours-item span:last-child {
    color: var(--text-secondary);
}

.pricing-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-image-link {
    display: block;
    border-radius: var(--border-radius);
}

.pricing-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

.pricing-image-link:hover .pricing-image {
    transform: scale(1.01);
}

.pricing-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2100;
}

.pricing-lightbox.is-open {
    display: flex;
}

.pricing-lightbox-image {
    max-width: min(96vw, 1400px);
    max-height: 92vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.45);
}

.pricing-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.95);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: rgba(55, 65, 81, 0.6);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-row span:first-child {
    color: var(--text-primary);
}

.pricing-row span:last-child {
    font-weight: 600;
    color: var(--primary-color);
}

/* Services Section */
.services {
    background: linear-gradient(rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.18));
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.service-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: 0;
    padding: 0;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.service-toggle-main {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-icon {
    font-size: 3rem;
    display: inline-block;
}

.service-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.service-chevron {
    font-size: 1.4rem;
    color: var(--accent-color);
    transition: transform 0.25s ease;
}

.service-card.is-open .service-chevron {
    transform: rotate(180deg);
}

.service-body {
    margin-top: 1rem;
    display: none;
}

.service-card.is-open .service-body {
    display: block;
}

.service-card p {
    margin: 0;
}

.service-intro {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-group + .service-group {
    margin-top: 1.5rem;
}

.service-group h4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.service-list {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
}

.service-list li + li {
    margin-top: 0.5rem;
}

.service-note {
    margin-top: 0.75rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.service-extra,
.service-extra-note {
    display: none;
}

.service-more-block.is-expanded .service-extra {
    display: list-item;
}

.service-more-block.is-expanded .service-extra-note {
    display: block;
}

.service-more-toggle {
    margin-top: 0.75rem;
    padding: 0;
    background: transparent;
    border: 0;
    color: var(--accent-color);
    font-weight: 600;
    cursor: pointer;
}

.service-more-toggle:hover {
    text-decoration: underline;
}

/* Gallery Section */
.gallery-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 0.5rem;
}

.gallery-item {
    flex: 0 0 clamp(280px, 32vw, 360px);
    scroll-snap-align: start;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    background-color: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-grid::-webkit-scrollbar {
    height: 10px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: rgba(31, 41, 55, 0.55);
    border-radius: 99px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: rgba(220, 38, 38, 0.85);
    border-radius: 99px;
}

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

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

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

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

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
}

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

/* Contact Section */
.contact {
    background-image: url('images/flower-bg.avif');
    background-size: cover;
    background-position: 50% 100%;
    background-repeat: repeat;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.16));
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) minmax(220px, 1fr);
    gap: 1.5rem;
}

.contact-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background-color: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-visit {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
}

.contact-visit-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-visit-header h4 {
    margin: 0;
}

.contact-map {
    width: 100%;
    min-height: 260px;
    border: 0;
    border-radius: var(--border-radius);
}

.contact-address {
    margin: 0;
}

.contact-address a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-address a:hover {
    text-decoration: underline;
}

.contact-card .contact-icon {
    font-size: 2rem;
}

.contact-card h4 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.contact-card p {
    margin: 0;
    color: var(--text-secondary);
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background-color: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(55, 65, 81, 0.8);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: rgba(55, 65, 81, 0.6);
    color: var(--text-primary);
    backdrop-filter: blur(5px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-light);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form input {
    margin-bottom: 1rem;
}

.contact-form textarea {
    margin-bottom: 1.5rem;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 2rem 0;
    border-top: 1px solid rgba(220, 38, 38, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand h3 {
    margin-bottom: 0.5rem;
}

.footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

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

.social-link:hover {
    background-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        position: relative;
        flex-wrap: wrap;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
        order: 3;
        margin-top: 0.75rem;
        padding: 1rem;
        background-color: rgba(17, 24, 39, 0.98);
        border: 1px solid rgba(220, 38, 38, 0.3);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-lg);
    }

    .nav-actions.mobile-active {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
        order: 4;
        margin-top: -0.25rem;
        padding: 0 1rem 1rem;
        background-color: rgba(17, 24, 39, 0.98);
        border: 1px solid rgba(220, 38, 38, 0.3);
        border-top: none;
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        box-shadow: var(--shadow-lg);
    }

    .nav-actions.mobile-active .btn {
        width: 100%;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-contact {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }

    .about-layout {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }

    .about-content .section-badge,
    .about-content .section-title {
        text-align: center;
    }

    .about-image-wrap {
        justify-self: center;
    }
    
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-side {
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .service-card,
    .contact-card,
    .hours-card,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.gallery-item img[src*="placeholder"] {
    background: linear-gradient(90deg, var(--background-light) 25%, rgba(255,255,255,0.5) 50%, var(--background-light) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}