/* Custom colors and Thai-inspired styling */
body {
    font-family: 'Source Sans 3', 'Inter', sans-serif;
    background-color: #f7f3ed;
    /* Off-white / Creamy Background */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    letter-spacing: 0.03em;
}

/* Rich Chocolate Brown for primary elements */
.spa-primary {
    background-color: #5C4033;
}

.spa-text-primary {
    color: #5C4033;
}

/* Lustrous Gold for accents */
.spa-accent {
    background-color: #D4AF37;
}

.spa-text-accent {
    color: #D4AF37;
}

.section-separator {
    width: 80px;
    height: 3px;
    background-color: #D4AF37;
    margin: 0 auto 20px auto;
}

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

/* Thai Pattern Background for Sections (Subtle Texture) */
.thai-pattern-bg {
    background-image: repeating-linear-gradient(-45deg,
            rgba(92, 64, 51, 0.05),
            /* Very subtle primary brown */
            rgba(92, 64, 51, 0.05) 5px,
            transparent 5px,
            transparent 10px);
}

/* Hero Section Styling with Image and Dark Overlay */
#hero-section {
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.65);
    /* Darker overlay for text contrast */
}

/* Styling for the always-visible sticky footer on mobile */
#sticky-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

/* Price list styling for clear mobile view */
.price-card {
    border: 1px solid #D4AF37;
    background-color: #ffffff;
}

.price-list-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #E5E7EB;
}

.price-list-item:last-child {
    border-bottom: none;
}

.price-value {
    font-weight: 700;
    color: #5C4033;
}

.price-subtle {
    font-size: 0.85em;
    color: #6B7280;
    font-weight: 400;
    margin-left: 6px;
}