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

:root {
    --primary-gold: #C5A059;
    --primary-gold-light: #D4B06A;
    --primary-gold-dark: #A88942;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-white: #FFFFFF;
    --bg-off-white: #FAFAFA;
    --bg-cream: #F9F7F4;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--bg-white);
}

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

.navbar {
    background-color: var(--bg-white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 247, 244, 0.9) 100%),
                url('images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 56px;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 16px 48px;
    background-color: var(--primary-gold);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-gold);
}

.content-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.alt-bg {
    background-color: var(--bg-cream);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.reverse {
    flex-direction: row-reverse;
}

.section-text {
    flex: 1;
}

.section-text h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 24px;
    position: relative;
}

.section-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
}

.section-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
}

.section-image {
    flex: 1;
}

.section-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-section {
    padding: 100px 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
}

.contact-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.contact-section > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
}

.contact-info {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    padding: 0 40px;
}

.contact-item {
    flex: 1;
    padding: 0 20px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-gold);
    margin-bottom: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.legal-container {
    max-width: 900px;
    margin: 120px auto 60px;
    padding: 60px;
    background-color: var(--bg-white);
}

.back-btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: var(--primary-gold);
    color: var(--bg-white);
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background-color: var(--primary-gold-dark);
}

#legal-text h1 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 32px;
}

#legal-text h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

#legal-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
}

#legal-text ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

#legal-text li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.8;
}

footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 50px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-info p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 20px;
    font-size: 14px;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-copyright p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .section-container {
        gap: 50px;
    }

    .section-image img {
        height: 380px;
    }
}

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

    .hero p {
        font-size: 18px;
    }

    .section-container {
        flex-direction: column;
        gap: 40px;
    }

    .reverse {
        flex-direction: column;
    }

    .section-text h2 {
        font-size: 32px;
    }

    .section-image img {
        height: 300px;
    }

    .contact-info {
        flex-direction: column;
        gap: 40px;
    }

    .nav-links {
        display: none;
    }

    .legal-container {
        margin: 100px auto 40px;
        padding: 30px;
    }
}
