/* CSS Variables */
:root {
    --primary-color: #111111;
    --primary-hover: #333333;
    --bg-white: #ffffff;
    --bg-light: #fafafa;
    --bg-subtle: #f5f5f5;
    --text-dark: #111111;
    --text-body: #444444;
    --text-muted: #888888;
    --border-color: #e5e5e5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: color 0.2s ease;
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: var(--text-dark);
}

.nav-links a::after {
    display: none;
}

.book-btn {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 12px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    letter-spacing: 0.02em;
}

.book-btn:hover {
    background: var(--primary-hover);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--bg-white);
    padding: 120px 24px 80px;
}

.hero::before {
    display: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.hero h1 span {
    color: var(--text-dark);
    font-style: italic;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-body);
    max-width: 420px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.7;
}

.cta-btn {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 16px 32px;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    letter-spacing: 0.02em;
}

.cta-btn:hover {
    background: var(--primary-hover);
}

.hero-overlay {
    display: none;
}

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

/* Section Styles */
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    text-align: center;
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 60px;
    font-weight: 300;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-white);
    padding: 28px 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.2s ease;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.service-icon {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.about-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-body);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

.stats {
    display: flex;
    gap: 48px;
    margin-top: 40px;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 400;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    background: var(--bg-subtle);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    aspect-ratio: 4/5;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
}

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

.gallery-placeholder,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.gallery-item:hover .gallery-placeholder {
    background: var(--border-color);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

.info-item h4 {
    font-size: 0.9375rem;
    margin-bottom: 4px;
    color: var(--text-dark);
    font-weight: 500;
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.map-placeholder {
    background: var(--bg-subtle);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    font-size: 1rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--bg-subtle);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 12px;
    font-size: 0.875rem;
}

.footer-links h4,
.footer-social h4 {
    font-size: 0.875rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.2s ease;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--text-dark);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: var(--text-muted);
    transition: color 0.2s ease;
    font-size: 0.875rem;
}

.social-link:hover {
    color: var(--text-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    overflow-y: auto;
    padding: 40px 20px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    opacity: 1;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    transform: translateY(-20px);
    animation: modalSlide 0.2s ease forwards;
}

@keyframes modalSlide {
    to {
        transform: translateY(0);
    }
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
}

.close-btn:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 28px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.8125rem;
    color: var(--text-body);
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-dark);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 8px;
}

.submit-btn:hover {
    background: var(--primary-hover);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-text h2 {
        text-align: center;
    }

    .stats {
        justify-content: center;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .logo img {
        height: 40px;
    }

    .logo span {
        font-size: 1.25rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        align-items: center;
        padding: 32px 0;
        gap: 24px;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-150%);
        transition: transform 0.2s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .book-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

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

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

    .section-title {
        font-size: 1.5rem;
    }

    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 20px;
    }

    .about {
        padding: 60px 0;
    }

    .about-text p {
        font-size: 0.9375rem;
    }

    .gallery {
        padding: 60px 0;
    }

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

    .contact {
        padding: 60px 0;
    }

    .contact-info {
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 28px 20px;
        margin: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .cta-btn {
        padding: 14px 28px;
        font-size: 0.875rem;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .stat {
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .info-item h4 {
        font-size: 1rem;
    }

    .footer {
        padding: 40px 0 24px;
    }
}

/* Smooth scrolling offset for fixed header */
section {
    scroll-margin-top: 80px;
}
