@import "./reset.css";
@import "./fonts.css";
@import "./variables.css";


body {
    font-family: "Montserrat", sans-serif;
    color: var(--dark-color);
    background: #fff;
}

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

section {
    padding: 60px 0px 60px 0px;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 140%;
}

.section-title b {
    font-weight: 600;
    color: var(--accent-color);
}

.section-title--center {
    text-align: center;
}

.title-descriptor {
    color: var(--primary-color);
    display: flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
    border-radius: var(--small-border-radius);
    margin-bottom: 14px;
    padding: 5px 12px;
    background: #62a41b15;
    font-weight: 500;
}

.button {
    background: var(--accent-color);
    color: var(--light-color);
    position: relative;
    text-align: center;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: clamp(16px, 1.05vw, 18px);
    font-weight: 500;
    box-shadow: 0 8px 28px rgba(20, 190, 254, 0.32);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(20, 190, 254, 0.42);
}


.button.button--blue {
    background: var(--primary-color);
}

.button.button--blue:hover {
    background: var(--primary-color-hover);
}

.redirect-link {
    font-size: 18px;
    color: var(--accent-color);
    text-decoration: underline;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fade-in-scale {
    animation: fadeInScale 0.3s ease forwards;
}

        .no-results {
            text-align: center;
            padding: 60px 20px;
            background: #f9f9f9;
            border-radius: 10px;
            margin: 30px 0;
        }
        .no-results-icon {
            font-size: 64px;
            margin-bottom: 20px;
            opacity: 0.5;
        }
        .no-results h3 {
            color: #333;
            margin-bottom: 15px;
            font-size: 24px;
        }
        .no-results p {
            color: #666;
            margin-bottom: 25px;
            font-size: 16px;
        }
        .reset-filters-btn, .form-filter__remove {
            display: inline-block;
            margin: 0 auto;
            cursor: pointer;
        }

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.no-scroll {
    overflow-y: hidden;
}

.background-wrapper {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.scaleItem {
    transition: all .3s ease;
}

.scaleItemRev {
    transition: all .3s ease;
}

.scaleItem:hover {
    transform: scale(1.1);
}

.scaleItemRev:hover {
    transform: scale(0.9);
}

.list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.list__item {
    color: var(--primary-color);
    padding: 4px 8px;
    background: #abdcff20;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.list__item img {
    width: 25px;
    aspect-ratio: 1;
}

.two-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.three-lines {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width:1200px) {
    .scaleItem:hover {
        transform: scale(1);
    }

    .section-title {
        font-size: 24px;
    }
}

@media (max-width:810px) {
    section {
        padding: 40px 0 40px 0;
    }

    .button {
        padding: 20px 24px;
    }
}

.form-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #333;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    z-index: 1000;
    display: none;
    transition: opacity 0.5s ease;
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    /* hidden until JS decides */
    background: #0f172a;
    /* slate-900 */
    color: #e5e7eb;
    /* gray-200 */
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.25);
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
}

.cookie-banner__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner__link {
    color: var(--accent-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__actions {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
}

.cookie-banner__btn {
    appearance: none;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all .15s ease;
}

.cookie-banner__btn--primary {
    background: var(--primary-color);
    color: #0b1020;
    border-color: var(--primary-color);
}

.cookie-banner__btn--primary:hover {
    filter: brightness(0.95);
}

.cookie-banner__btn--ghost {
    background: transparent;
    color: #e5e7eb;
    border-color: #334155;
}

.cookie-banner__btn--ghost:hover {
    border-color: #475569;
}

@media (max-width:970px) {
    .container {
        margin: 0;
    }
}

@media (max-width: 640px) {
    .cookie-banner__inner {
        grid-template-columns: 1fr;
    }

    .cookie-banner__actions {
        justify-content: flex-start;
    }
}

.badge {
    width: 100% !important;
    max-width: 100% !important;
}

.tabs-header {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
}
.tab-button {
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
}
.tab-button.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
    margin-bottom: -2px;
}
.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}
.tab-pane.active {
    display: block;
    padding:30px;
    background:#fff;
    border-radius:30px;
    line-height:140%;
    font-size:16px;
    min-height:300px;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
