/* ===== Variables & Reset ===== */
:root {
    --primary: #8e1c40;
    /* Deep rich red/magenta */
    --primary-dark: #66102a;
    --text-dark: #222;
    --text-light: #666;
    --bg-light: #fff;
    --bg-offwhite: #f9f9f9;
    --border: #ddd;

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

    --container: 1100px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.5;
    background: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: background 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-accent {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    font-style: italic;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .logo-text {
    color: var(--text-dark);
    text-shadow: none;
}

.navbar.scrolled .logo-accent {
    color: var(--primary);
    text-shadow: none;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    transition: all 0.2s ease;
}

.navbar.scrolled .phone-link {
    color: var(--primary);
    background: rgba(142, 28, 64, 0.1);
}

.phone-link:hover {
    background: var(--primary);
    color: #fff;
}

.phone-icon {
    width: 16px;
    height: 16px;
}

/* ===== Hero Section ===== */
.hero {
    height: 60vh;
    /* Shorter hero */
    min-height: 400px;
    width: 100%;
    /* Using the interior image directly as background */
    background: url('hero-interior.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Clear overlay for text readability without "haze" */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    /* Simple dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
    max-width: 600px;
    animation: fadeIn 1s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: #fff;
    color: var(--text-dark);
}

/* ===== Quick Info Bar ===== */
.quick-info {
    background: var(--bg-offwhite);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.info-grid-compact {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon-small {
    color: var(--primary);
    width: 24px;
    height: 24px;
}

.info-item div {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    line-height: 1.3;
}

.direction-link-sm {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.direction-link-sm:hover {
    border-bottom-color: var(--primary);
}

/* ===== Main Layout ===== */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 20px;
    align-items: start;
}

/* ===== Services Compact ===== */
.section-header-compact {
    margin-bottom: 30px;
}

.section-header-compact h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
}

.section-subtitle {
    margin-top: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin-top: 10px;
}

.services-list-compact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    transition: transform 0.2s ease;
}

.service-row:hover {
    transform: translateX(5px);
}

.service-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-thumb {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    /* Slightly squared to show more detail */
    object-fit: cover;
    border: 1px solid var(--border);
}

.service-name {
    font-weight: 500;
    font-size: 1.15rem;
}

.service-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.5;
}

/* ===== Gallery Mosaic ===== */
.gallery-mosaic {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mosaic-main {
    position: relative;
    height: auto;
    min-height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #f0f0f0;
    /* bg in case of loading */
}

/* Ensure the main mosaic image (storefront) is not cropped */
.mosaic-main img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Show the whole image */
    display: block;
}

.mosaic-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    backdrop-filter: blur(2px);
}

.mosaic-sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mosaic-sub img {
    height: 180px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.gallery-mosaic img:hover {
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

/* ===== Footer ===== */
.simple-footer {
    background: var(--text-dark);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.simple-footer p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-phone {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-light);
    margin-bottom: 20px;
}

.copyright {
    font-size: 0.8rem;
    color: #888;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .main-layout {
        grid-template-columns: 1fr;
        /* Stack services and gallery */
        gap: 50px;
        padding: 40px 20px;
    }

    .hero {
        height: 50vh;
    }

    .info-grid-compact {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 0 10px;
    }

    .mobile-hidden {
        display: none;
    }

    .mosaic-main {
        height: 200px;
    }

    .mosaic-sub img {
        height: 120px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.address-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

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

/* ===== Lightbox ===== */
.lightbox {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2001;
    line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

/* Add pointer cursor to gallery images to indicate clickability */
.gallery-mosaic img {
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}