:root {
    --primary-bg: #d9c5b2; /* Пясъчен бежов */
    --secondary-bg: #f5f1ed; /* Кремаво бяло */
    --accent-olive: #556b2f; /* Дълбок маслиненозелен */
    --accent-terracotta: #a0522d; /* Мек теракотен */
    --accent-lavender: #967bb6; /* Избледнял лавандулов */
    --text-main: #333333;
    --text-header: #000000;
    --spacing-unit: 8px;
}

body {
    background-color: var(--secondary-bg);
    color: var(--text-main);
    font-family: 'Merriweather', serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-header);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
}

h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.2rem; margin-bottom: 2rem; border-bottom: 2px solid var(--accent-olive); display: inline-block; padding-bottom: 10px; }
h3 { font-size: 1.5rem; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-sand { background-color: var(--primary-bg); }

header {
    background-color: rgba(245, 241, 237, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
    color: var(--accent-olive);
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: color 0.3s;
}

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

.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 { color: #fff; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

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

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-olive);
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border-radius: 2px;
    transition: background 0.3s;
    border: none;
}

.btn:hover {
    background-color: var(--accent-terracotta);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    padding: 20px 0;
    border-left: 2px solid var(--accent-olive);
    padding-left: 30px;
    position: relative;
    margin-bottom: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 25px;
    width: 12px;
    height: 12px;
    background: var(--accent-terracotta);
    border-radius: 50%;
}

footer {
    background-color: #2c2c2c;
    color: #d1d1d1;
    padding: 60px 0 20px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
}

.disclaimer-box {
    background: #fdf2f2;
    border: 1px solid #f5c6cb;
    padding: 20px;
    margin: 20px 0;
    color: #721c24;
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

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

@media (max-width: 768px) {
    .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; }
    h1 { font-size: 2.2rem; }
    .hero { height: 60vh; }
}