:root {
    --primary: #2d4a3e; /* Skujzaļš / Хвойный / Forest Green */
    --primary-light: #f4f6f4;
    --accent: #d2a25c; /* Silts koks / Теплый древесный / Warm Wood */
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --water-blue: #4a7c92;
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Header & Navigation */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 20px 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    gap: 6px;
    align-items: center;
}

.lang-switcher a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 9px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(0, 0, 0, 0.15);
}

.lang-switcher a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.lang-switcher a.active {
    color: #ffffff;
    background-color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(210, 162, 92, 0.3);
}

.btn-book {
    background-color: var(--accent);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-book:hover {
    background-color: #bfa14b;
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-book:active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 550px;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.35)), url('img/1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: #ffffff;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 60px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.25;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Section Settings */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: var(--text-light);
    font-size: 16px;
}

/* About & House Features */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.house-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-card {
    background: var(--primary-light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.gallery-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-desc {
    padding: 20px;
}

.gallery-desc h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 18px;
}

.gallery-desc p {
    font-size: 14px;
    color: var(--text-light);
}

/* Canoe Section */
.canoe-section {
    background-color: var(--primary-light);
}

.canoe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.canoe-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.canoe-features {
    margin-top: 25px;
}

.canoe-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.canoe-item .icon-box {
    background: #ffffff;
    color: var(--water-blue);
    padding: 10px;
    border-radius: 8px;
    margin-right: 15px;
    display: flex;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.canoe-item h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 4px;
}

.canoe-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* Grid Why Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.why-card {
    border: 1px solid #eaeaea;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.why-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.why-card .icon {
    color: var(--accent);
    margin-bottom: 15px;
}

.why-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--primary);
    color: #ffffff;
    padding: 60px 0 20px 0;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col p a {
    transition: color 0.3s ease;
}

.footer-col p a:hover {
    color: var(--accent) !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    opacity: 0.6;
}

/* Adaptive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .about-grid, .canoe-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 32px; }
    section { padding: 50px 0; }
    .canoe-image img { height: 350px; }
}

@media (max-width: 480px) {
    .nav-right {
        gap: 10px;
    }
    .lang-switcher {
        gap: 4px;
    }
    .lang-switcher a {
        font-size: 11px;
        padding: 4px 7px;
    }
    .btn-book {
        padding: 8px 14px;
        font-size: 10px;
    }
    .logo {
        font-size: 20px;
    }
}
