/* CSS Custom Properties */
:root {
    --color-primary: #4A90A4;
    --color-primary-dark: #3A7A8E;
    --color-secondary: #1a1a1a;
    --color-accent: #6BB5C9;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #FAFAFA;
    --color-white: #FFFFFF;
    --color-gold: #D4AF37;

    --font-display: 'Georgia', 'Times New Roman', serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --transition: 200ms ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

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

a:hover {
    color: var(--color-primary-dark);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.3;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
section {
    padding: 60px 0;
}

section h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-secondary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-secondary) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    padding: 20px;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.rating-badge .stars {
    color: var(--color-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating-badge .rating-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 8px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero .subtitle {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    opacity: 0.95;
    margin-bottom: 8px;
}

.hero .tagline {
    font-size: clamp(1rem, 3vw, 1.25rem);
    opacity: 0.8;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

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

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

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    color: var(--color-white);
}

/* About Section */
.about {
    background: var(--color-white);
}

.about-content {
    display: grid;
    gap: 40px;
}

.about-image {
    max-width: 300px;
    margin: 0 auto;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-text .lead {
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.about-text p {
    margin-bottom: 24px;
    color: var(--color-text-light);
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-bg);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

.highlight-icon {
    font-size: 1.25rem;
}

/* Services Section */
.services {
    background: var(--color-bg);
}

.services-grid {
    display: grid;
    gap: 20px;
}

.service-card {
    background: var(--color-white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--color-secondary);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Pricing Section */
.pricing {
    background: var(--color-white);
}

.pricing-cards {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    position: relative;
    background: var(--color-bg);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
}

.price-card.featured {
    background: var(--color-primary);
    color: var(--color-white);
}

.price-card.featured .price-amount span {
    color: rgba(255,255,255,0.7);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-secondary);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.price-duration {
    font-size: 1.125rem;
    margin-bottom: 8px;
    opacity: 0.9;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.price-amount span {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

.price-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-note {
    text-align: center;
    margin-top: 24px;
    color: var(--color-primary);
    font-weight: 500;
}

/* Gallery Section */
.gallery {
    background: var(--color-bg);
}

.gallery-grid {
    display: grid;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
}

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

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

/* Reviews Section */
.reviews {
    background: var(--color-white);
}

.reviews-grid {
    display: grid;
    gap: 24px;
}

.review-card {
    background: var(--color-bg);
    padding: 28px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
}

.review-stars {
    color: var(--color-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-card blockquote {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.7;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-name {
    font-weight: 600;
    color: var(--color-secondary);
}

/* Contact Section */
.contact {
    background: var(--color-secondary);
    color: var(--color-white);
}

.contact h2 {
    color: var(--color-white);
}

.contact-grid {
    display: grid;
    gap: 40px;
}

.contact-info h3,
.hours h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--color-white);
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.phone-link:hover {
    color: var(--color-white);
}

.address {
    margin-top: 24px;
}

.address h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    opacity: 0.8;
}

.address p {
    margin-bottom: 8px;
}

.maps-link {
    color: var(--color-accent);
    font-size: 0.9rem;
}

.maps-link:hover {
    color: var(--color-white);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hours-table td {
    padding: 12px 0;
}

.hours-table td:last-child {
    text-align: right;
    color: var(--color-accent);
}

.hours-table tr.closed td:last-child {
    color: rgba(255,255,255,0.5);
}

/* Footer */
.footer {
    background: #111;
    color: var(--color-white);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-brand h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.footer-brand p {
    opacity: 0.7;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact a {
    color: var(--color-accent);
}

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

.footer-contact span {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

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

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 16px;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

.lightbox-close {
    top: 16px;
    right: 16px;
}

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

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

/* Tablet Breakpoint */
@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }

    .hero-cta {
        flex-direction: row;
    }

    .about-content {
        grid-template-columns: 280px 1fr;
        align-items: center;
    }

    .about-image {
        margin: 0;
    }

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

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

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

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

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

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

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

/* Desktop Breakpoint */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    section {
        padding: 100px 0;
    }

    .about-content {
        grid-template-columns: 320px 1fr;
        gap: 60px;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
