:root {
    --primary-color: #2C3E30;
    /* Dark Green - Professional & Calming */
    --accent-color: #D4AF37;
    /* Metallic Gold */
    --text-color: #333333;
    --light-bg: #F9F8F4;
    /* Cream/Off-white */
    --white: #ffffff;
    --soft-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #F0E6D2;
    /* Fallback warm beige */
    /* Warm golden overlay - reverted to original silk pattern */
    background-image: linear-gradient(rgba(255, 253, 240, 0.25), rgba(255, 253, 240, 0.25)), url('golden_thai_silk_pattern.png');
    background-repeat: repeat;
    background-size: 500px;
    /* Slightly larger pattern */
    background-attachment: fixed;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Top Bar Removed */

.language-selector {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile-lang-selector {
    display: none;
    /* Hidden by default on desktop */
}

/* Mobile specific styles for centering */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 0;
        margin-top: 20px;
        justify-content: center;
        width: 100%;
    }
}

.language-selector a {
    color: var(--primary-color);
    /* Dark text for white header */
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 2px 5px;
    /* Add click area */
    opacity: 0.7;
}

.language-selector a:hover,
.language-selector a.active {
    color: var(--accent-color);
    opacity: 1;
}

/* Header */
header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
    /* Blends logo background with white header */
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--accent-color);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    font-weight: 700;
    /* Bold for Lato */
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
}

nav a:hover {
    color: var(--accent-color);
}

.btn-nav {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 50px;
}

.btn-nav:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 90vh;
    /* Almost full screen */
    background: url('hero.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Darken image for text readability */
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.highlight-loc {
    color: var(--accent-color);
    font-weight: 700;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Sections General */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    font-style: italic;
    font-size: 1.2rem;
}

/* Locations */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.location-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--soft-shadow);
    text-align: center;
    position: relative;
    border-top: 5px solid var(--primary-color);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-10px);
}

.location-card.featured {
    border-top: 5px solid var(--accent-color);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.location-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.location-card address {
    font-style: normal;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.location-card address a {
    color: inherit;
    /* Keep text dark grey */
    text-decoration: none;
    transition: var(--transition);
    display: block;
    /* Make the whole address block clickable */
}

.location-card address a:hover {
    color: var(--accent-color);
    /* Turn gold on hover */
    transform: scale(1.02);
    /* Subtle pop effect */
}

.loc-details p {
    margin-bottom: 25px;
    color: #777;
}

.loc-phone {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    margin-top: 15px;
    margin-bottom: 10px !important;
}

.btn-small {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-size: 0.9rem;
}

.btn-small:hover {
    background: var(--accent-color);
}

/* Booking Information Box */
.booking-info-box {
    background: var(--white);
    padding: 30px;
    margin-top: 60px;
    border-radius: 10px;
    box-shadow: var(--soft-shadow);
    text-align: center;
    border: 1px solid var(--accent-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.booking-info-box::before {
    content: '\f017';
    /* Clock icon or similar from FontAwesome */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 5px solid var(--light-bg);
    /* Should match body bg or section bg */
}

/* Fix for pseudo-element background if section bg is different */
.locations-section .booking-info-box::before {
    border-color: #F0E6D2;
    /* Fallback matches body bg approximately, but section might be transparent */
}

.booking-info-box h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 10px;
}

.booking-info-box p {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 1.1rem;
}

.booking-info-box .small-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

/* Services */
.services-section {
    background-color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Old Service Cards Removed */

.price-tag {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Pricing */
.pricing-section {
    background: transparent;
}

.pricing-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--soft-shadow);
}

.pricing-content h2 {
    text-align: center;
    margin-bottom: 30px;
}

.price-table {
    width: 100%;
}

.price-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.price-row:last-child {
    border-bottom: none;
}

.header-row {
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--accent-color);
}

.note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.8rem;
    color: #888;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-col p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.opening-hours li {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    opacity: 0.6;
}

/* About Section */
.about-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 100px 0;
}

.about-section .section-title {
    color: var(--white);
}

.about-section .section-subtitle {
    color: var(--accent-color);
    margin-bottom: 40px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    line-height: 1.8;
    opacity: 0.9;
    font-weight: 300;
}

.about-text strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }

    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .mobile-lang-selector {
        display: flex;
        justify-content: center;
        margin-top: 10px;
        width: 100%;
        margin-bottom: 5px;
    }

    .mobile-menu-toggle {
        display: none !important;
        /* Menu hidden as requested */
    }

    nav {
        display: none !important;
        /* Standard nav hidden on mobile */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .price-row {
        grid-template-columns: 1fr;
        gap: 5px;
        text-align: center;
    }

    .price-row span:first-child {
        font-weight: bold;
    }
}

/* Gift Card Section */
.gift-card-section {
    background: var(--accent-color);
    /* Gold/Metallic background */
    color: var(--primary-color);
    padding: 80px 0;
    text-align: center;
}

.gift-card-content {
    max-width: 700px;
    margin: 0 auto;
}

.gift-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.gift-card-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.gift-card-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

.btn-outline-dark:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    margin: auto;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    border-top: 5px solid var(--accent-color);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-color);
    text-decoration: none;
}

.modal-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    padding-right: 30px;
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #444;
}

.read-more-btn {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.read-more-btn:hover {
    border-bottom: 2px solid var(--accent-color);
}

/* Mobile Nav Active State */
@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }
}

/* Location Hours in Cards */
.loc-hours {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


/* Detailed Services */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Alternating Layout */
.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    height: 400px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.85);
    /* Readability on pattern */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-content .price-tag {
    margin-top: 20px;
    display: block;
    font-size: 1.3rem;
    color: var(--accent-color);
}

.service-content p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

@media (max-width: 900px) {

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
        gap: 30px;
    }

    .service-image {
        height: 300px;
        width: 100%;
    }
}