/* --- CSS Variables for Earthy, Minimal Luxury Theme --- */
:root {
    --bg-color: #FAF8F5;       /* Soft, warm off-white */
    --light-bg: #EAE6DF;       /* Muted taupe/beige for contrast sections */
    --text-color: #3E3B35;     /* Deep earthy charcoal for high readability */
    --accent-color: #8C7A6B;   /* Earthy clay/taupe for accents */
}

/* --- Global Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    font-weight: 300;
}

/* --- Typography --- */
h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: var(--text-color);
}

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background-color: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 1.5px;
}

.links a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 2.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.links a:hover {
    color: var(--accent-color);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.hero-content {
    max-width: 700px;
    margin-top: 5rem; /* Offsets absolute nav */
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #5A554C;
}

/* Button Styling */
.btn {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid var(--text-color);
    text-decoration: none;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.4s ease;
}

.btn:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

/* --- Sections --- */
.section {
    padding: 8rem 5%;
    text-align: center;
}

.earthy-bg {
    background-color: var(--light-bg);
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.section p {
    font-size: 1.15rem;
    color: #5A554C;
}

/* --- Contact Info --- */
.contact-info {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--text-color);
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 3rem 2rem;
    font-size: 0.85rem;
    color: #8C7A6B;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    nav {
        flex-direction: column;
        gap: 1.5rem;
        padding-top: 3rem;
    }
    .links a {
        margin: 0 1rem;
    }
    .hero-content {
        margin-top: 8rem;
    }
}
