@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:wght@700;900&display=swap');

:root {
    --brand-dark: #2D2928;
    --brand-light: #FEFBFC;
    --primary: #D4AF37;
    --bg-light: #FEFBFC;
    --text-main: #2D2928;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --border-radius: 4px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(45, 41, 40, 0.4), rgba(45, 41, 40, 0.6)), url('hero.webp');
    background-size: cover;
    background-position: center;
    padding: 0 var(--spacing-md);
    color: var(--brand-light);
}

.hero h1 {
    font-size: clamp(3rem, 12vw, 6rem);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    font-style: italic;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.btn-book {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--brand-dark);
    color: var(--brand-light);
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    border: 2px solid var(--brand-light);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: glow-subtle 2s infinite alternate;
    font-size: 1rem;
}

@keyframes glow-subtle {
    from { box-shadow: 0 4px 10px rgba(254, 251, 252, 0.1); transform: scale(1); }
    to { box-shadow: 0 4px 20px rgba(254, 251, 252, 0.3); transform: scale(1.03); }
}

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

.location-tag {
    margin-top: 2.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 1.3rem;
}

/* Layout Section */
.container {
    padding: var(--spacing-lg) var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--brand-dark);
}

.service-category {
    margin-bottom: 3rem;
}

.service-category h3 {
    font-size: 1.6rem;
    border-bottom: 2px solid var(--brand-dark);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.service-name { font-weight: 600; }
.service-price { font-weight: 700; color: #555; }

.contact-section {
    background: var(--brand-dark);
    color: var(--brand-light);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
}

.contact-section a {
    color: inherit;
    text-decoration: none;
}

footer {
    padding: var(--spacing-md);
    text-align: center;
    font-size: 0.8rem;
    color: #999;
}
