/* CSS для главной страницы и истории экологии */

:root {
    --primary-green: #2a5934;
    --secondary-green: #4caf50;
    --light-green: #e8f5e9;
    --accent-green: #81c7b9;
    --dark-green: #1e3c1e;
    --earth-brown: #8d6e63;
    --sky-blue: #87ceeb;
    --text-dark: #2c3e2c;
    --text-light: #5d7a5d;
    --white: #ffffff;
    --gray-bg: #f8fdf8;
    --border-color: #e0f2e0;
    --shadow: 0 4px 20px rgba(42, 89, 52, 0.08);
    --shadow-hover: 0 8px 30px rgba(42, 89, 52, 0.12);
    --transition: all 0.3s ease;
    --radius: 12px;
    --footer-bg: #2c3e50;
    --footer-accent: #3498db;
    --footer-text: #ecf0f1;
    --footer-hover: #bdc3c7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Roboto', system-ui, sans-serif;
}

body {
    background-color: var(--gray-bg);
    color: var(--text-dark);
    line-height: 1.7;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== НАВИГАЦИЯ ===== */
.navbar {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    color: var(--white);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(30, 60, 30, 0.25);
    border-bottom: 3px solid var(--accent-green);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Логотип */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    flex-shrink: 0;
    padding: 5px 0;
}

.logo:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    padding: 3px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text h2 {
    font-size: 1.2rem;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1.1;
}

.logo-text p {
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1.1;
}

/* Кнопка мобильного меню */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px 12px;
    transition: var(--transition);
    border-radius: 8px;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Меню навигации */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
    flex-grow: 1;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 30px;
    transition: var(--transition);
    font-size: 0.9rem;
    display: inline-block;
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    border-bottom: 3px solid var(--accent-green);
    font-weight: 600;
}

/* Стили для ссылки входа в обычном меню */
.login-link {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    border-radius: 30px;
    padding: 8px 18px;
}

.login-link:hover {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
}

/* Кнопка входа (десктопная) */
.login-btn {
    background: linear-gradient(to right, var(--secondary-green), #3d9440);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(61, 148, 64, 0.3);
    flex-shrink: 0;
    text-decoration: none;
}

.login-btn:hover {
    background: linear-gradient(to right, #3d9440, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(61, 148, 64, 0.4);
    color: white;
}

/* ===== МОДАЛЬНОЕ ОКНО ЗАПИСИ ===== */
.registration-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.registration-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: white;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.registration-modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.close-modal:hover {
    opacity: 0.8;
}

.modal-body {
    padding: 25px;
}

.event-info-summary {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #4caf50;
}

.event-info-item {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.event-info-item:last-child {
    margin-bottom: 0;
}

.event-info-label {
    font-weight: 600;
    color: #555;
    display: inline-block;
    width: 100px;
}

/* Форма */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-control.error {
    border-color: #f44336;
}

textarea.form-control {
    resize: vertical;
    font-family: inherit;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.error-message {
    color: #f44336;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.modal-footer {
    padding: 20px 25px;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1b5e20, #388e3c);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

/* Сообщение об успехе */
.success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.success-message.active {
    display: block;
}

.success-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 20px;
}

.success-title {
    font-size: 1.5rem;
    color: #2e7d32;
    margin-bottom: 15px;
}

.success-text {
    color: #666;
    margin-bottom: 25px;
}

/* ===== ГЛАВНАЯ СТРАНИЦА ===== */
.home1 {
    background: #4b9e5a;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.home1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.home1 .container {
    position: relative;
    z-index: 2;
}

.home1 h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.home1 p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.scroll-down {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    margin-top: 30px;
    transition: var(--transition);
}

.scroll-down:hover {
    transform: translateY(5px);
}

.scroll-down span {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.scroll-down i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== СЕКЦИИ ===== */
.section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-green), var(--secondary-green));
    border-radius: 2px;
}

/* ===== СЕКЦИЯ "О ПРОЕКТЕ" ===== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-green);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 36px;
    box-shadow: 0 8px 20px rgba(79, 157, 105, 0.3);
}

.about-card h3 {
    color: var(--primary-green);
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 700;
}

.about-card p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ===== МЕРОПРИЯТИЯ ===== */
.events-section {
    padding: 80px 0;
    background-color: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.modern-event-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.modern-event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-green);
}

.event-header {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.event-badge {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge-date {
    font-size: 1.2rem;
    font-weight: 700;
}

.badge-time {
    font-size: 0.9rem;
    opacity: 0.9;
}

.event-icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.event-content {
    padding: 25px;
    flex-grow: 1;
}

.event-title {
    color: var(--dark-green);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.detail-item i {
    color: var(--accent-green);
    width: 20px;
}

.event-description {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.event-footer {
    padding: 0 25px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modern-register-btn {
    background: linear-gradient(to right, var(--secondary-green), var(--accent-green));
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.modern-register-btn:hover {
    background: linear-gradient(to right, var(--accent-green), var(--secondary-green));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.share-btn {
    width: 45px;
    height: 45px;
    background: var(--light-green);
    border: none;
    border-radius: 50%;
    color: var(--primary-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.share-btn:hover {
    background: var(--accent-green);
    color: white;
    transform: rotate(15deg);
}

/* ===== КОНТАКТЫ ===== */
.contact-info-section {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 40px 0;
    border: 1px solid var(--border-color);
}

.contact-info-title {
    color: var(--dark-green);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.contact-info-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-info-item:hover {
    background-color: var(--light-green);
    border-radius: var(--radius);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-icon-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.contact-details {
    flex-grow: 1;
}

.contact-label {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: block;
}

.contact-value {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-value.address {
    font-style: normal;
    font-weight: 500;
}

.contact-value.phone {
    font-weight: 600;
    color: var(--primary-green);
}

.contact-value.email {
    color: var(--accent-green);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.contact-value.email:hover {
    color: var(--secondary-green);
    text-decoration: underline;
}

.contact-value.work-hours {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.work-hours-day {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px dashed var(--border-color);
}

.work-hours-day:last-child {
    border-bottom: none;
}

.day-name {
    font-weight: 600;
    color: var(--text-dark);
}

.day-time {
    color: var(--text-light);
}

/* ===== ФУТЕР ===== */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--footer-accent);
}

.footer-section p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--footer-text);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--footer-text);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--footer-accent);
    transform: translateY(-3px);
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--footer-hover);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
    color: #95a5a6;
}

/* ===== АДАПТИВНОСТЬ (МОБИЛЬНАЯ ВЕРСИЯ) ===== */
@media (max-width: 992px) {
    .nav-container {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 15px;
        padding: 0 15px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #1e3c1e, #2a5934);
        padding: 20px;
        gap: 12px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        border-radius: 0 0 20px 20px;
        z-index: 999;
        width: 100%;
        order: 4;
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 12px 20px;
        font-size: 1rem;
        border-radius: 30px;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(5px);
    }
    
    /* Ссылка входа в мобильном меню */
    .login-link {
        background: linear-gradient(135deg, #4caf50, #2e7d32);
        margin-top: 10px;
    }
    
    /* Скрываем обычную кнопку входа на мобильных */
    .login-btn {
        display: none;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-image {
        width: 45px;
        height: 45px;
    }
    
    .logo-text h2 {
        font-size: 1.1rem;
    }
    
    .logo-text p {
        font-size: 0.7rem;
    }
    
    .home1 h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .home1 {
        padding: 70px 0;
    }
    
    .home1 h1 {
        font-size: 2.2rem;
    }
    
    .home1 p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .modern-event-card {
        max-width: 100%;
    }
    
    /* Контактная информация адаптив */
    .contact-info-section {
        padding: 30px 20px;
    }
    
    .contact-info-title {
        font-size: 1.8rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .contact-icon-large {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .work-hours-day {
        flex-direction: column;
        gap: 3px;
    }
    
    /* Модальное окно адаптив */
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .logo {
        flex-direction: row;
        gap: 8px;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .logo-text h2 {
        font-size: 1rem;
    }
    
    .logo-text p {
        font-size: 0.65rem;
    }
    
    .nav-container {
        padding: 0 10px;
        gap: 10px;
    }
    
    .footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .copyright {
        padding-top: 20px;
        font-size: 0.8rem;
    }
    
    .contact-info-section {
        padding: 25px 15px;
    }
    
    .contact-info-title {
        font-size: 1.6rem;
    }
    
    .contact-label {
        font-size: 1rem;
    }
    
    .contact-value {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-text p {
        display: none;
    }
    
    .logo-text h2 {
        font-size: 0.9rem;
    }
    
    .home1 h1 {
        font-size: 1.8rem;
    }
    
    .home1 p {
        font-size: 1rem;
    }
}

@media (min-width: 993px) {
    /* На десктопе показываем обычное меню */
    .nav-menu {
        display: flex !important;
        position: static;
        flex-direction: row;
        background: none;
        padding: 0;
        box-shadow: none;
        width: auto;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    /* Обычная кнопка входа на десктопе */
    .login-btn {
        display: flex;
    }
}