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

:root {
    --primary-black: #000000;
    --primary-white: #FFFFFF;
    --off-white: #F8F8F8;
    --soft-gray: #E5E5E5;
    --text-gray: #666666;
    --border-color: #D4D4D4;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    background-color: var(--primary-white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: 2px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--soft-gray);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-black);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--text-gray);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-black);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-book {
    padding: 0.8rem 2rem;
    background-color: var(--primary-black);
    color: var(--primary-white) !important;
    border: 1px solid var(--primary-black);
    transition: all 0.3s ease;
}

.btn-book:hover {
    background-color: var(--primary-white);
    color: var(--primary-black) !important;
}

.btn-book::after {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    margin-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) brightness(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 8rem;
    font-weight: 300;
    letter-spacing: 20px;
    margin-bottom: 2rem;
    color: var(--primary-black);
}

.hero-divider {
    width: 200px;
    height: 2px;
    background-color: var(--primary-black);
    margin: 0 auto 2rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 8px;
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--primary-black);
    color: var(--primary-white);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--primary-black);
    transition: all 0.4s ease;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Featured Section */
.featured-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--primary-white);
}

.featured-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.featured-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
}

.featured-logo {
    object-fit: contain;
    width: 100%;
    height: auto;
    max-height: 600px;
}

.featured-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    line-height: 1.3;
}

.featured-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Section Divider */
.section-divider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background-color: var(--primary-white);
}

.section-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
    max-width: 200px;
}

.section-divider-icon {
    font-size: 1.5rem;
    color: var(--primary-black);
    padding: 0 2rem;
}

/* Experience Section */
.experience {
    padding: var(--spacing-xl) 0;
    background-color: var(--primary-white);
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    font-style: italic;
    font-weight: 300;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.experience-card {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--off-white);
    border: 1px solid var(--soft-gray);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-black);
}

.experience-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.experience-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Services Section */
.services {
    padding: var(--spacing-xl) 0;
    background-color: var(--off-white);
}

/* Service Gallery */
.service-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0 3rem;
}

.service-gallery-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

.service-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.6s ease, filter 0.4s ease;
}

.service-gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.service-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--primary-white);
    padding: 2rem;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.service-gallery-item:hover .service-gallery-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.3));
}

.service-gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    color: var(--primary-white);
}

.service-gallery-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.services-list {
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    margin-bottom: 1.5rem;
}

.service-content {
    padding: 1rem 0;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.service-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-divider {
    height: 1px;
    background-color: var(--border-color);
    margin-top: 1rem;
}

/* Booking Section */
.booking {
    padding: var(--spacing-xl) 0;
    background-color: var(--primary-white);
}

/* Location Section */
.location-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--off-white);
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.location-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.location-details p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.location-details a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-details a:hover {
    color: var(--primary-black);
}

.location-map {
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
}

/* Booking Section */
.booking {
    padding: var(--spacing-xl) 0;
    background-color: var(--primary-white);
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
}

.booking-form {
    background-color: var(--off-white);
    padding: 3rem;
    border: 1px solid var(--soft-gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    background-color: var(--primary-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-black);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1.3rem;
    background-color: var(--primary-black);
    color: var(--primary-white);
    border: 2px solid var(--primary-black);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.btn-submit:hover {
    background-color: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.confirmation-message {
    text-align: center;
    padding: 4rem 3rem;
    background-color: var(--off-white);
    border: 2px solid var(--primary-black);
}

.confirmation-icon {
    font-size: 4rem;
    color: var(--primary-black);
    margin-bottom: 2rem;
    font-weight: 300;
}

.confirmation-message h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.confirmation-message p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.confirmation-details {
    background-color: var(--primary-white);
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
    font-weight: 500;
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: var(--primary-white);
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    margin-top: 1rem;
}

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

/* Footer */
.footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section:nth-child(1) {
    text-align: left;
}

.footer-section:nth-child(2) {
    text-align: center;
}

.footer-section:nth-child(3) {
    text-align: right;
    align-items: flex-end;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.footer-section p {
    color: var(--soft-gray);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-section a {
    color: var(--soft-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--soft-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    color: var(--primary-white);
    transform: translateX(5px);
}

.social-link svg {
    flex-shrink: 0;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    filter: invert(1);
}

.footer-tagline {
    font-style: italic;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--soft-gray);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .featured-img {
        height: 500px;
    }

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

    .location-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 4rem;
        letter-spacing: 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 4px;
    }

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

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-gallery-item {
        height: 350px;
    }

    .featured-content h2 {
        font-size: 2.2rem;
    }

    .featured-content p {
        font-size: 1rem;
    }

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

    .booking-form {
        padding: 2rem 1.5rem;
    }

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

    .footer-section:nth-child(1),
    .footer-section:nth-child(2),
    .footer-section:nth-child(3) {
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: 5px;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        font-size: 0.8rem;
        gap: 1rem;
    }

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

    .featured-img {
        height: 400px;
    }

    .service-gallery-item {
        height: 300px;
    }
}
