:root {
    /* Color Palette */
    --primary-beige: #F8F5F2;
    --secondary-beige: #EAE0D5;
    --rose-gold: #B76E79;
    --rose-gold-light: #D4A5A5;
    --white: #FFFFFF;
    --dark-text: #2D2D2D;
    --light-text: #666666;
    --accent-gold: #D4AF37;

    /* Typography */
    --font-heading-main: 'Playfair Display', serif;
    --font-heading-section: 'Prata', serif;
    --font-subheading: 'Cormorant Garamond', serif;
    --font-body: 'Libre Baskerville', serif;

    /* Spacing */
    --section-padding: 80px 20px;
    --container-max-width: 1200px;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--primary-beige);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading-section);
    font-weight: 400;
    color: var(--dark-text);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

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

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

/* Section Common Styles */
section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 50px;
    position: relative;
    font-family: var(--font-heading-section);
    color: var(--dark-text);
    text-transform: capitalize;
}

.editorial-text {
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--rose-gold);
    margin: 15px auto 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--rose-gold);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #a05a66;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
}

.btn-outline {
    border: 2px solid var(--rose-gold);
    color: var(--rose-gold);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--rose-gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navigation */
nav {
    position: relative;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    padding: 2px 0;
    border-bottom: 1px solid #eeeeee;
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 40px;
}

.nav-logo {
    height: 40px;
    width: auto;
    display: block;
    transform: translateY(5%);
    padding: 3px;
}

.nav-links {
    display: flex;
    gap: 35px;
    flex: 1;
    align-items: center;
}

.nav-links.left {
    justify-content: flex-end;
    margin-right: 40px;
}

.nav-links.right {
    justify-content: flex-start;
    margin-left: 40px;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    /* Keep nav clean, using system fallback/Inter if available, or just keeping it simple */
    color: #222222;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--rose-gold);
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
        /* In a real project we'd use a hamburger menu */
    }

    .nav-container {
        justify-content: center;
    }
}

.footer-logo img {
    height: 180px;
    width: auto;
    margin-bottom: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(0, 0, 0, 1)), url('hero_bg.JPG') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content h1 {
    font-family: var(--font-heading-main);
    font-size: 5rem;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 3px;
    font-weight: 700;
}

.hero-tagline {
    font-family: var(--font-subheading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
}

.about-content p {
    margin-bottom: 20px;
}

/* Services Section */
.services {
    background-color: var(--primary-beige);
}

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

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    font-family: var(--font-heading-section);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--rose-gold);
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--primary-beige);
}

/* Pricing Section */
.pricing {
    background-color: var(--white);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

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

.price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--rose-gold);
}

.pricing-notes {
    margin-top: 50px;
    background: var(--primary-beige);
    padding: 30px;
    border-radius: 8px;
}

.pricing-notes h4 {
    margin-bottom: 15px;
}

/* Gallery Section */
.gallery {
    padding-bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Why Choose Us */
.why-us {
    background-color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.why-item i {
    font-size: 2.5rem;
    color: var(--rose-gold);
    margin-bottom: 15px;
}

/* Contact & Booking */
.contact {
    background-color: var(--secondary-beige);
}

.contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info,
.booking-form {
    flex: 1;
    min-width: 300px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.booking-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 20px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 10px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a:hover {
    color: var(--rose-gold);
}

/* Mobile Sticky Button */
.sticky-book {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .sticky-book {
        display: block;
    }

    .hero-btns {
        flex-direction: column;
    }

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