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

* {
    box-sizing: border-box;
}

:root {
    --primary-color: #d4a574;
    --dark-yellow: #b8860b;
    --primary-dark: #2c2c2c;
    --text-color: #2c2c2c;
    --border-color: #e0e0e0;
    --bg-light: #f9f9f9;
    --secondary-bg: #ffffff;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.25rem;
}

.navbar {
    background-color: var(--secondary-bg) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-dark) !important;
    letter-spacing: 0.5px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--dark-yellow) !important;
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--dark-yellow) !important;
    font-weight: 600;
}

.hero-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
    margin-bottom: 2rem;
}

.page-header {
    margin-bottom: 2rem;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.section {
    margin-bottom: 3rem;
    padding: 0;
}

.section-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-link {
    color: var(--dark-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--primary-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-yellow);
    border-color: var(--dark-yellow);
    color: white;
}

.btn-secondary {
    background-color: #e0e0e0;
    border-color: #e0e0e0;
    color: var(--primary-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #c0c0c0;
    border-color: #c0c0c0;
    color: var(--primary-dark);
}

.form-control {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.75rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-form {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.footer-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--dark-yellow);
    text-decoration: underline;
}

.legal-content {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.legal-content h2 {
    color: var(--primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.legal-content p {
    line-height: 1.8;
    color: #555;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    color: white;
    padding: 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 4px solid var(--primary-color);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-consent-content p {
    color: white;
    margin-bottom: 1rem;
}

.cookie-consent-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-consent-content a:hover {
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.cookie-consent .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.95rem;
}

footer {
    background-color: var(--bg-light);
    margin-top: 4rem;
}

footer h5 {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

footer p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

footer a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--dark-yellow);
}

a {
    color: var(--dark-yellow);
    text-decoration: none;
}

a:hover {
    color: var(--primary-dark);
}

.text-muted {
    color: #888 !important;
}

.text-danger {
    color: #c0392b !important;
}

.border-top {
    border-top: 1px solid var(--border-color) !important;
}

.border-bottom {
    border-bottom: 1px solid var(--border-color) !important;
}

.d-none {
    display: none !important;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-image {
        max-height: 300px;
    }

    .section-image {
        height: 250px;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .legal-content {
        padding: 1.5rem;
    }

    .cookie-consent {
        padding: 1.5rem;
    }

    .cookie-consent-buttons {
        flex-direction: column;
    }

    .cookie-consent .btn {
        width: 100%;
    }

    .navbar-nav {
        text-align: center;
    }

    .col-md-6 {
        margin-bottom: 2rem;
    }

    .text-md-right {
        text-align: left;
    }

    footer {
        text-align: center;
    }

    .footer-nav {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1rem;
    }

    .section {
        margin-bottom: 2rem;
    }

    .section-image {
        height: 200px;
    }

    .lead {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}
