/* Общие стили */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #FFFFFF;
    color: #212529;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #2B8A3E;
}

.container {
    max-width: 1200px;
}

/* Шапка */
header {
    background-color: #FFFFFF;
    border-bottom: 2px solid #FFD60A;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #2B8A3E;
}

.nav-link {
    color: #2B8A3E !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FFD60A !important;
}

.navbar-toggler {
    border-color: #2B8A3E;
}

/* Hero секция */
.lemon-hero {
    background-image: url('lemon-hero.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #212529;
}

.lemon-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.lemon-hero .container {
    position: relative;
    z-index: 2;
}

/* Секции */
section {
    margin-bottom: 3rem;
}

.bg-white {
    background-color: #FFFFFF !important;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card {
    border: 1px solid #FFD60A;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.btn-lemon {
    background-color: #FFD60A;
    border-color: #2B8A3E;
    color: #212529;
    font-weight: 600;
    padding: 10px 20px;
    text-decoration: none;
    cursor: pointer;
    opacity: 1;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-lemon:hover {
    background-color: #FFC107;
    border-color: #FFD60A;
}

.clickable {
    pointer-events: auto !important; /* Убеждаемся, что кликабельность не заблокирована */
    opacity: 1 !important;
}

/* Футер */
footer {
    background-color: #FFF3B0;
    color: #212529;
    padding: 20px 0;
}

footer a {
    color: #2B8A3E;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #FFD60A;
}

/* Адаптивность */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }

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

    .nav-item {
        margin: 10px 0;
    }

    .card {
        margin-bottom: 20px;
    }
}

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

    .btn-lemon {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}