/* CSS Custom Properties */
:root {
    --primary-color: #3D2B1F;
    --secondary-color: #D4AF37;
    --accent-color: #8B4513;
    --text-dark: #2C1810;
    --text-light: #F5F3F0;
    --cream: #F9F7F4;
    --dark-cream: #EDE8E0;
    --shadow-subtle: rgba(61, 43, 31, 0.1);
    --shadow-medium: rgba(61, 43, 31, 0.2);
    --shadow-strong: rgba(61, 43, 31, 0.4);

    --font-display: 'Playfair Display', serif;
    --font-body: 'Source Sans 3', sans-serif;

    --border-radius: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: clamp(14px, 1.2vw, 16px);
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary-color);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary-color);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.ornate-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, var(--secondary-color) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, var(--secondary-color) 1px, transparent 1px),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.08'%3E%3Cpath d='M30 30c0-6.627-5.373-12-12-12s-12 5.373-12 12 5.373 12 12 12 12-5.373 12-12zm12 0c0-6.627-5.373-12-12-12s-12 5.373-12 12 5.373 12 12 12 12-5.373 12-12z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 120px, 80px 80px, 60px 60px;
    opacity: 0.7;
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: heroFadeIn 1.5s ease-out;
}

@keyframes heroFadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.logo-container {
    margin-bottom: 2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.stork-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--secondary-color);
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.business-name {
    font-family: var(--font-display);
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.name-primary {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.name-secondary {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--secondary-color);
    letter-spacing: 0.05em;
}

.rating-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: var(--border-radius-lg);
    margin: 2rem auto;
    display: inline-block;
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.5); }
}

.stars {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.rating-text {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.awards-banner {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: var(--border-radius-lg);
    margin: 2rem auto;
    display: inline-block;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    animation: awardsBounce 0.8s ease-out 0.5s both;
}

@keyframes awardsBounce {
    0% { opacity: 0; transform: translateY(20px) scale(0.9); }
    60% { transform: translateY(-5px) scale(1.02); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 2rem;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    animation: btnBounce 1s ease-out 1s both;
}

.btn-primary:hover {
    background: #E5C146;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
    backdrop-filter: blur(10px);
    animation: btnBounce 1s ease-out 1.2s both;
}

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

@keyframes btnBounce {
    0% { opacity: 0; transform: translateY(20px); }
    60% { transform: translateY(-3px); }
    100% { opacity: 1; transform: translateY(0); }
}

.phone-number {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    text-align: center;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-arrow {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Gallery Section */
.gallery {
    background: var(--dark-cream);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--shadow-subtle);
}

.gallery-item.main-item {
    grid-column: span 2;
}

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

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

.gallery-item.main-item img {
    height: 350px;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(61, 43, 31, 0.8));
    color: var(--text-light);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

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

.gallery-overlay span {
    font-weight: 600;
    font-size: 1.1rem;
}

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

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

.service-category {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px var(--shadow-subtle);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.category-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
    font-family: var(--font-display);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    border-radius: var(--border-radius);
    background: var(--dark-cream);
    transition: var(--transition);
}

.service-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.service-info {
    display: flex;
    flex-direction: column;
}

.service-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.service-duration {
    font-size: 0.9rem;
    color: var(--accent-color);
    opacity: 0.8;
}

.service-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

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

.reviews .section-title {
    color: var(--text-light);
}

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

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.review-card.featured {
    grid-column: span 2;
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--secondary-color);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reviewer-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.review-stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.review-date {
    font-size: 0.9rem;
    opacity: 0.7;
}

.review-text {
    line-height: 1.7;
    font-style: italic;
}

/* Contact Section */
.contact {
    background: var(--dark-cream);
}

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

.hours-card,
.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px var(--shadow-subtle);
    transition: var(--transition);
}

.hours-card:hover,
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.card-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: var(--font-display);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
}

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

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-radius: var(--border-radius);
    background: var(--dark-cream);
    transition: var(--transition);
}

.hour-item:hover {
    background: rgba(212, 175, 55, 0.1);
}

.hour-item.closed {
    opacity: 0.6;
}

.day {
    font-weight: 600;
    color: var(--primary-color);
}

.time {
    color: var(--accent-color);
    font-weight: 500;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--dark-cream);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

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

.contact-item.phone:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-contact h4,
.footer-social h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

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

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

.social-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    opacity: 0.7;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(212, 175, 55, 0.8);
}

#lightbox-img {
    max-width: 100%;
    max-height: 100%;
    border-radius: var(--border-radius);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .gallery-item.main-item {
        grid-column: span 1;
    }

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

    .review-card.featured {
        grid-column: span 1;
    }

    .footer-content {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        gap: 2rem;
    }

    .service-category,
    .hours-card,
    .contact-card {
        padding: 1.5rem;
    }

    .contact-grid {
        gap: 2rem;
    }
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .gallery-item,
    .service-category,
    .review-card,
    .hours-card,
    .contact-card {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease-out forwards;
    }

    .gallery-item:nth-child(1) { animation-delay: 0.1s; }
    .gallery-item:nth-child(2) { animation-delay: 0.2s; }
    .gallery-item:nth-child(3) { animation-delay: 0.3s; }
    .gallery-item:nth-child(4) { animation-delay: 0.4s; }
    .gallery-item:nth-child(5) { animation-delay: 0.5s; }
    .gallery-item:nth-child(6) { animation-delay: 0.6s; }

    .service-category:nth-child(1) { animation-delay: 0.1s; }
    .service-category:nth-child(2) { animation-delay: 0.3s; }
    .service-category:nth-child(3) { animation-delay: 0.5s; }

    .review-card:nth-child(1) { animation-delay: 0.1s; }
    .review-card:nth-child(2) { animation-delay: 0.3s; }
    .review-card:nth-child(3) { animation-delay: 0.5s; }
    .review-card:nth-child(4) { animation-delay: 0.7s; }
}

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