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

:root {
    --primary-color: #1b4d2e;
    --primary-dark: #0f2818;
    --primary-light: #2d6b42;
    --accent-color: #c17a3d;
    --light-bg: #f9f7f4;
    --text-dark: #2c2c2c;
    --text-light: #6b6b6b;
    --border-color: #e0dcd8;
}

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

html {
    scroll-behavior: smooth;
}

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

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

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

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

.navbar-brand {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.hero-section {
    position: relative;
    height: auto;
    overflow: hidden;
}

.hero-section img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 400px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 77, 46, 0.8) 0%, rgba(27, 77, 46, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.hero-content h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin: 0;
}

.btn {
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

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

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

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.page-header {
    background-color: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
}

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

.page-header .lead {
    color: var(--text-light);
}

section {
    margin-bottom: 3rem;
}

.rounded {
    border-radius: 0.75rem;
}

.contact-info {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary-color);
}

.contact-info p {
    margin-bottom: 1.5rem;
}

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

.contact-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(27, 77, 46, 0.25);
    color: var(--text-dark);
}

.contact-form .custom-checkbox .custom-control-input:checked ~ .custom-control-label {
    color: var(--text-dark);
}

.contact-form .custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

footer {
    background-color: var(--text-dark);
    margin-top: 5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
    color: white;
    text-decoration: none;
}

footer h5 {
    font-family: 'Lora', serif;
    color: white;
    margin-bottom: 1rem;
}

footer ul li {
    margin-bottom: 0.5rem;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 44, 44, 0.98);
    color: white;
    padding: 2rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

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

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    min-width: 120px;
}

.alert {
    border-radius: 0.75rem;
    border: none;
    background-color: #e7f3ff;
    color: #004085;
}

.alert-info {
    background-color: #e7f3ff;
    color: #004085;
    border: 1px solid #b8daff;
}

img.img-fluid {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.text-muted {
    color: var(--text-light) !important;
}

.text-danger {
    color: #dc3545;
}

ul, ol {
    color: var(--text-dark);
    line-height: 1.8;
}

ul li, ol li {
    margin-bottom: 0.75rem;
}

.list-unstyled li {
    margin-bottom: 0.5rem;
}

strong {
    font-weight: 600;
    color: var(--text-dark);
}

.row {
    margin-bottom: 2rem;
}

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

    h2 {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-section img {
        min-height: 300px;
    }

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

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

    footer .text-md-right {
        text-align: left !important;
        margin-top: 2rem;
    }

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

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

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

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1rem;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .page-header {
        padding: 2rem 0 !important;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .hero-section img {
        min-height: 250px;
    }
}
