* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #1F1F1D;
    --primary-burgundy: #58130e;
    --accent-rose: #8d443d;
    --light-rose: #b78a83;
    --white: #ffffff;
    --gradient-start: #5D392B;
    --gradient-end: #BB836E;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--primary-dark);
    background-color: var(--white);
}

/* Header & Navigation */
header {
    background: var(--primary-dark);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: 'EB Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--light-rose);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(31, 31, 29, 0.7), rgba(88, 19, 14, 0.7)), 
                url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920&q=80') center/cover no-repeat;
    color: var(--white);
    padding: 8rem 2rem;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #BB836E 0%, #D4A574 100%);
    color: var(--white);
    padding: 1rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(187, 131, 110, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(187, 131, 110, 0.6);
    background: linear-gradient(135deg, #D4A574 0%, #BB836E 100%);
}

.cta-button i {
    width: 20px;
    height: 20px;
}

.cta-secondary {
    background: var(--white);
    color: var(--primary-dark);
    border: none;
    margin-left: 1rem;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: #f5f5f5;
    color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.cta-secondary i {
    color: var(--primary-dark);
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--accent-rose);
    margin-bottom: 3rem;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-burgundy);
}

.service-content p {
    color: #666;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-price {
    font-weight: bold;
    color: var(--accent-rose);
    font-size: 1.2rem;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    padding: 2rem;
    background: var(--white);
    color: var(--primary-dark);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid #f0f0f0;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    width: 80px;
    height: 80px;
    stroke-width: 1.5;
    stroke: url(#icon-gradient);
}

/* Gradient for feature icons */
.feature-icon svg {
    filter: drop-shadow(0 2px 4px rgba(93, 57, 43, 0.2));
}

.feature h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-burgundy);
}

.feature p {
    color: #666;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-burgundy) 100%);
    color: var(--white);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    margin-bottom: 1rem;
}

.contact-icon i {
    width: 32px;
    height: 32px;
    color: var(--light-rose);
    stroke-width: 2;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-item p {
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--light-rose);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--white);
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

footer p {
    opacity: 0.8;
}

/* Mobile Responsive */
@media (min-width: 769px) {
    .service-buttons {
        flex-wrap: nowrap;
    }
    
    .service-buttons .btn-details {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 5rem 2rem;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cta-button {
        display: flex;
        justify-content: center;
        margin: 1rem auto;
        width: 100%;
        max-width: 300px;
    }

    .cta-secondary {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-buttons {
        flex-direction: column;
    }

    .service-buttons .btn-details {
        width: 100%;
        justify-content: center;
    }

    .feature-icon i {
        width: 64px;
        height: 64px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .masters-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeIn 0.6s ease-out;
}

/* Lightbox Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.modal-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--white);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.close:hover {
    background: rgba(0,0,0,0.8);
}

.modal-body {
    padding: 2rem;
}

.modal-body h2 {
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.modal-body p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.modal-price {
    font-size: 1.5rem;
    color: var(--accent-rose);
    font-weight: bold;
    margin: 1.5rem 0;
}

.btn-details {
    background: var(--white);
    color: var(--primary-burgundy);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-details i {
    width: 18px;
    height: 18px;
}

.btn-details:hover {
    background: #f5f5f5;
    color: var(--primary-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-details.btn-primary {
    background: linear-gradient(135deg, #BB836E 0%, #D4A574 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(187, 131, 110, 0.4);
}

.btn-details.btn-primary i {
    color: var(--white);
}

.btn-details.btn-primary:hover {
    background: linear-gradient(135deg, #D4A574 0%, #BB836E 100%);
    box-shadow: 0 6px 20px rgba(187, 131, 110, 0.6);
}

.btn-book {
    background: linear-gradient(135deg, #BB836E 0%, #D4A574 100%);
    color: var(--white);
    border: none;
    padding: 1rem 3rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s;
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(187, 131, 110, 0.4);
}

.btn-book i {
    width: 20px;
    height: 20px;
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(187, 131, 110, 0.6);
    background: linear-gradient(135deg, #D4A574 0%, #BB836E 100%);
}

.service-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.service-buttons .btn-details {
    flex: 1;
    min-width: 0;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
}

/* Masters Section */
.masters {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.masters-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.master-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.master-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.master-info {
    padding: 1.5rem;
}

.master-info h3 {
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
    font-family: 'EB Garamond', serif;
}

.master-info p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.master-info .btn-book-master {
    background: linear-gradient(135deg, #BB836E 0%, #D4A574 100%);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(187, 131, 110, 0.4);
}

.master-info .btn-book-master i {
    width: 18px;
    height: 18px;
}

.master-info .btn-book-master:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(187, 131, 110, 0.6);
    background: linear-gradient(135deg, #D4A574 0%, #BB836E 100%);
}

/* Map Section */
.map-section {
    padding: 0;
    background-color: var(--white);
}

.map-container {
    max-width: 100%;
    margin: 0;
    padding: 3rem 0 0 0;
}

.map-container h2 {
    text-align: center;
    padding: 0 2rem;
}

.map-container .section-subtitle {
    text-align: center;
    padding: 0 2rem;
}

.map-wrapper {
    width: 100%;
    margin-top: 2rem;
}

.map-wrapper > div {
    width: 100% !important;
}
