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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #4a4a4a;
    transition: color 0.3s;
    padding: 8px 0;
}

.nav a:hover {
    color: #b08968;
}

.btn-book-header {
    background: #b08968;
    color: #fff;
    padding: 10px 24px;
    font-size: 13px;
}

.btn-book-header:hover {
    background: #96724f;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 16px;
    color: #4a4a4a;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/gallery6.jpg') center center / cover no-repeat;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #d4b896;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title .script {
    font-family: 'Great Vibes', cursive;
    font-size: 62px;
}

.hero-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 36px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.btn-hero {
    background: #b08968;
    color: #fff;
    padding: 14px 40px;
    font-size: 14px;
}

.btn-hero:hover {
    background: #96724f;
    transform: translateY(-2px);
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
    text-align: center;
    background: #faf8f5;
}

.section-label {
    font-size: 14px;
    color: #b08968;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-heading {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #4a4a4a;
}

.about-text {
    max-width: 750px;
    margin: 0 auto 40px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    font-weight: 300;
}

.about-social {
    margin-top: 30px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b08968;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s;
}

.instagram-link:hover {
    color: #96724f;
}

/* ===== Services Section ===== */
.services {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

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

.service-card {
    background: #faf8f5;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 28px 24px;
    text-align: center;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 14px;
    color: #333;
}

.service-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #777;
    margin-bottom: 20px;
    font-weight: 300;
}

.btn-service {
    background: transparent;
    color: #b08968;
    border: 2px solid #b08968;
    padding: 10px 28px;
    font-size: 12px;
}

.btn-service:hover {
    background: #b08968;
    color: #fff;
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: #fff;
    background: url('images/gallery5.jpg') center center / cover no-repeat fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    font-style: italic;
    color: #d4b896;
    margin-bottom: 20px;
}

.cta-content > p:last-of-type {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
    background: #b08968;
    color: #fff;
    padding: 14px 40px;
}

.btn-cta:hover {
    background: #96724f;
    transform: translateY(-2px);
}

/* ===== Reviews Section ===== */
.reviews {
    padding: 100px 0;
    background: #faf8f5;
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-3px);
}

.review-stars {
    font-size: 22px;
    color: #e8b94a;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    font-style: italic;
    margin-bottom: 24px;
    font-weight: 300;
}

.review-author {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.review-rating {
    font-size: 13px;
    color: #b08968;
    font-weight: 600;
}

/* ===== RMT Section ===== */
.rmt-section {
    padding: 80px 0;
    background: #fff;
}

.rmt-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.rmt-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #333;
}

.rmt-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    font-weight: 300;
    margin-bottom: 30px;
}

.btn-rmt {
    background: #b08968;
    color: #fff;
    padding: 14px 40px;
}

.btn-rmt:hover {
    background: #96724f;
    transform: translateY(-2px);
}

/* ===== Location Section ===== */
.location {
    padding: 80px 0;
    background: #3c3228;
    color: #fff;
    text-align: center;
}

.location .section-title {
    color: #fff;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.location-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #d4b896;
}

.location-info p {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
}

.location-info a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
}

.location-info a:hover {
    color: #d4b896;
}

/* ===== Gallery ===== */
.gallery {
    background: #1a1a1a;
    padding: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: opacity 0.3s;
    cursor: pointer;
}

.gallery-grid img:hover {
    opacity: 0.75;
}

/* ===== Footer ===== */
.footer {
    background: #2c2420;
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-inner p {
    font-size: 13px;
    font-weight: 300;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d4b896;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-title {
        font-size: 40px;
    }

    .hero-title .script {
        font-size: 48px;
    }

    .location-info {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
        gap: 0;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 12px 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .hero-title {
        font-size: 32px;
    }

    .hero-title .script {
        font-size: 40px;
    }

    .hero-text {
        font-size: 14px;
    }

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

    .reviews-list {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 30px;
    }

    .about-heading {
        font-size: 22px;
    }

    .cta-content h2 {
        font-size: 30px;
    }

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

    .gallery-grid img {
        height: 140px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-title .script {
        font-size: 34px;
    }

    .about {
        padding: 60px 0;
    }

    .services {
        padding: 60px 0;
    }

    .reviews {
        padding: 60px 0;
    }

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