/* Global Styles */
:root {
    --primary-color: #D98841;
    --secondary-color: #E3BC82;
    --background-color: #FDF0D9;
    --text-color: #333333;
    --light-gray: #E5E9F0;
    --olive: #8C9052;
    --header-height-mobile: 50px;
    --header-height-desktop: 60px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
    padding-top: var(--header-height-desktop);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

/* Header Styles */
.header {
    background-color: var(--background-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: var(--header-height-desktop);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links a {
    margin: 0 1rem;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    color: var(--primary-color);
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    height: 99vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.hero-content {
    max-width: 1200px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}


.hero .cards-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.hero .card {
    background: var(--background-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 300px;
}

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

.hero .card i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.hero .card h3 {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

.hero .card p {
    font-size: 14px;
    color: #555;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Button Styles */
.btn-login, .btn-register, .btn-logout {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-login, .btn-logout {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-right: auto;
}

.header-btn {
    color: var(--primary-color);
    font-weight: bold;
}

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

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-register-submit {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-register-submit:hover {
    background-color: var(--secondary-color);
}

/* About Section Styles */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #ffffff, var(--background-color));
}

.section-title {
    text-align: center;
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 95%;
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    animation: modalSlideDown 0.3s ease-out;
}

@keyframes modalSlideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close, .close-feedback {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Form Styles */
.form-group {
    margin-bottom: 0.5rem;
}

.form-group label {
    margin-bottom: 0.25rem;
    display: block;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(217, 136, 65, 0.2);
}

.checkbox-group-custom {
    align-items: center;
    gap: 5px;
    display: flex;
}

.checkbox-group-custom label {
    font-size: 0.85rem;
}

.checkbox-group-custom a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Registration Page Styles */
.register-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--background-color) 0%, #ffffff 100%);
}

.register-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

.register-card h2 {
    color: var(--text-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

.register-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.register-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.register-divider::before,
.register-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: var(--light-gray);
}

.register-divider::before {
    left: 0;
}

.register-divider::after {
    right: 0;
}

.register-divider span {
    background: white;
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
}

.social-register {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-social i {
    font-size: 1.2rem;
}

.btn-social.google i {
    color: #DB4437;
}

.btn-social.facebook i {
    color: #4267B2;
}

.login-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.login-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.password-strength {
    height: 4px;
    background: var(--light-gray);
    border-radius: 2px;
    margin-top: 0.25rem;
}

/* Footer Styles */
.footer {
    background-color: var(--background-color);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}


.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Messages Styles */
.messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1000;
    width: 100%;
    max-width: 400px;
}

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease-out;
    position: relative;
    padding-right: 2rem;
}

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

.alert::after {
    content: "×";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.7;
}

.alert::after:hover {
    opacity: 1;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Form validation styles */
.form-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.field-error input,
.field-error select,
.field-error textarea {
    border-color: #dc3545;
}

.form-group.error input {
    border-color: #dc3545;
}

.form-group.success input {
    border-color: #28a745;
}

/* Login Styles */
.login-messages {
    margin-bottom: 5px;
    display: none;
}

.login-message {
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.login-message.error {
    background-color: #ffe6e6;
    border: 1px solid #ff9999;
    color: #cc0000;
}

.login-message.success {
    background-color: #e6ffe6;
    border: 1px solid #99ff99;
    color: #006600;
}

.login-form .form-group {
    margin-bottom: 8px;
}

.login-form .btn-submit {
    margin-top: 20px;
}

.login-form {
    gap: 0;
}

.login-form-group {
    margin-bottom: 0.5rem;
}

.login-form-group label {
    margin-bottom: 0.25rem;
    display: block;
}

.login-form-group .field-error {
    margin-top: 0.1rem;
    min-height: 14px;
    line-height: 1;
}

.login-form-group input {
    margin-top: 0.1rem;
    padding: 0.6rem;
}

.login-form .btn-submit {
    margin-top: 0.5rem;
}

/* Feedback Form Styles */
.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 0.5rem;
    font-weight: 500;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

.submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.success-message {
    text-align: center;
    padding: 1rem 0;
}

.success-message i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-button.prev {
    left: 1rem;
}

.carousel-button.next {
    right: 1rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 1;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Miscellaneous */
.normalize-link {
    text-decoration: none;
    color: #666;
}

.normalize-link:hover,
.normalize-link:focus,
.normalize-link:active {
    text-decoration: none;
    color: black;
}

.monitor-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background-color: #EF4444;
    color: white;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.logo-fed {
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
}

/* Left Sidebar Styles */
.sidebar {
    background: white;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


/* Mobile Toggle Buttons */
.mobile-toggle-buttons {
    display: none;
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: white;
    border-radius: 30px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    padding: 5px;
}

.toggle-button {
    background: white;
    border: none;
    color: var(--text-color);
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 25px;
    margin: 0 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-search {
    background: var(--primary-color);
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    margin: 0 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 2px 4px 6px var(--secondary-color);

    display: flex;
    align-items: center;
    justify-content: center; /* центрування тексту */
    text-align: center;
}


.toggle-button.active {
    background: var(--primary-color);
    color: white;
}

.toggle-button i {
    color: var(--primary-color);
    margin-right: 5px;
}

.toggle-button.active i {
    /*background: white;*/
    color: white;
}

/* Left Column */
.left-column {
    display: block;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .left-column {
        display: block !important;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: var(--header-height-mobile);
    }

    .header {
        height: var(--header-height-mobile);
    }

    .container {
        padding: 0 0.75rem;
    }

    .section {
        padding: 2rem 0;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .carousel-button {
        width: 30px;
        height: 30px;
    }

    .modal {
        padding-top: 5vh;
    }

    .modal-content {
        width: 90%;
        padding: 1.5rem;
        /*margin: 0 1rem;*/
    }

    .close-feedback {
        font-size: 1.75rem;
        padding: 0.25rem;
        top: 0.25rem;
        right: 0.5rem;
    }

    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .mobile-toggle-buttons {
        display: flex;
    }

    .main-container {
        grid-template-columns: 1fr !important;
        padding: 0.5rem;
    }

    .content {
        width: 100%;
    }

    .left-column {
        display: none !important;
        position: fixed;
        top: var(--header-height-mobile, 50px);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height-mobile, 50px));
        z-index: 990;
        background: rgba(0, 0, 0, 0.5);
        padding: 10px;
        overflow-y: auto;
        transition: opacity 0.3s ease;
        opacity: 0;
    }

    .left-column.visible {
        display: flex !important;
        justify-content: center;
        align-items: flex-start;
        opacity: 1;
    }

    .sidebar, .filters {
        width: 92%; /* Збільшено з 85% до 92% */
        max-width: 92%; /* Збільшено з 300px до 400px */
        margin: 20px auto;
        transform: translateX(-30px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        max-height: 82%; /* Обмежуємо висоту, щоб залишити місце для кнопок внизу */
        overflow-y: auto; /* Додаємо прокрутку, якщо вміст не поміщається */
        padding-bottom: 1rem; /* Додатковий відступ внизу */
    }

    .left-column.show-sidebar .sidebar,
    .left-column.show-filters .filters {
        transform: translateX(0);
        opacity: 1;
    }

    .left-column.show-sidebar .filters,
    .left-column.show-filters .sidebar {
        display: none;
    }

    .nav-container {
        display: flex;
        flex-wrap: nowrap !important;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0.5rem;
    }

    .logo-img {
        width: 28px;
        height: 28px;
    }

    .logo-letter {
        font-size: 1rem;
    }

    .logo-link {
        gap: 4px;
    }

    .auth-buttons {
        display: flex;
        gap: 0.35rem;
        flex-shrink: 0;
    }

    .feedback-btn,
    .btn-logout {
        width: 32px;
        height: 32px;
        margin-left: 1rem;
        margin-right: auto;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .feedback-btn .desktop-text,
    .btn-logout .desktop-text {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .messages {
        top: 60px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .alert {
        margin-bottom: 0.5rem;
    }

    .toggle-button {
        padding: 6px 10px;
        font-size: 12px;
    }

    .toggle-button i {
        margin-right: 3px;
    }

    .mobile-toggle-buttons {
        bottom: 10px;
    }

    .sidebar,
    .filters {
        width: 90%;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 14px;
    }

    .checkbox-group-custom label {
        font-size: 13px;
    }

    .submit-btn {
        padding: 0.75rem;
        font-size: 14px;
    }

    .success-message h3 {
        font-size: 18px;
    }

    .success-message p {
        font-size: 14px;
    }

    .close-feedback {
        font-size: 1.8rem;
        right: 0.75rem;
        top: 0.3rem;
        padding: 0.3rem;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .register-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .section {
        padding: 1.5rem 0;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 360px) {
    .nav-container {
        padding: 0.4rem 0.35rem;
    }

    .logo-img {
        width: 24px;
        height: 24px;
    }

    .feedback-btn,
    .btn-logout {
        width: 28px;
        height: 28px;
    }

    .feedback-btn i,
    .btn-logout i {
        font-size: 0.9rem;
    }

    .toggle-button {
        padding: 5px 8px;
        font-size: 11px;
    }

    .toggle-button i {
        margin-right: 2px;
    }

    .mobile-toggle-buttons {
        bottom: 8px;
        padding: 3px;
    }
}


/* Desktop-specific styles */
@media (min-width: 769px) {
    .mobile-icon {
        display: none;
    }

    .desktop-text {
        display: inline-block;
    }

    .feedback-btn, .btn-logout {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        transition: all 0.3s ease;
    }

    .feedback-btn {
        background-color: transparent;
        border: 1px solid var(--primary-color);
        color: var(--primary-color);
        margin-right: 1rem;
    }

    .feedback-btn:hover {
        background-color: rgba(217, 136, 65, 0.1);
    }

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

    .btn-logout:hover {
        color: var(--secondary-color);
    }
}

        ::-webkit-scrollbar {
  display: none;
}

/* Для Firefox */
html {
  scrollbar-width: none;
}


.header-btn.nav-links a {
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-btn.nav-links a:hover {
    color: var(--secondary-color) !important; /* Змінюємо колір при наведенні */
    /*text-decoration: underline; !* Додаємо підкреслення при наведенні *!*/
}

