@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700&family=Orbitron:wght@400;500;600;700&family=Material+Symbols+Outlined:wght@100..700&display=swap');
/* Reset and base styles  */
* {
    padding: 0px;
    margin: 0px;
    border: none;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
a, a:link, a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
aside, nav, footer, header, section, main {
    display: block;
}
h1, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
}
ul, ul li {
    list-style: none;
}
img {
    vertical-align: top;
}
img, svg {
    max-width: 100%;
    height: auto;
}
address {
    font-style: normal;
}
input, textarea, button, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}
input::-ms-clear {
    display: none;
}
button, input[type=submit] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}
input:focus, input:active,
button:focus, button:active {
    outline: none;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
label {
    cursor: pointer;
}
legend {
    display: block;
}

/*------------base-styles---------------*/

:root {
    --white: #eeeeee;
    --gray-light: #cccccc;
    --gray-dark: #2a2a2a;
    --black: #0a0a0a;

    --gray-light-hover: #bfbfbf;
    --gray-dark-hover: #1f1f1f;
    --black-hover: rgba(10, 10, 10, 0.7);

    --font-primary: 'Nunito', sans-serif;
    --font-secondary: 'Orbitron', sans-serif;
}

.icon {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 30px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    color: var(--gray-dark);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--gray-dark);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

h1, h2, h3 {
    font-family: var(--font-secondary);
    margin-bottom: 14px;
}

h1 {
    font-size: clamp(1.9rem, 1.6rem + 1.5vw, 3rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.6rem, 1.5rem + 0.6vw, 2.3rem);
    line-height: 1.35;
}

h3 {
    font-size: 1.6rem;
    line-height: 1.45;
}

p {
    font-size: clamp(1rem, 0.85rem + 0.4vw, 1.3rem);
}

.section-title {
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::before {
    content: "";
    width: 40px;
    height: 3px;
    background-color: var(--gray-dark-hover);
    display: inline-block;
}

.button {
    display: inline-block;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    background: var(--gray-dark);
    color: var(--white);
}

.button__primary {
    background-color: var(--black);
    color: var(--white);
}

.button__primary:hover {
    background-color: var(--black-hover);
    transform: scale(1.1);
}

.button__secondary {
    background-color: var(--gray-light);
    color: var(--gray-dark);
}

.button__secondary:hover {
    background-color: var(--gray-light-hover);
}

/*-----------------------header------------------------------------*/

.header {
    background: var(--gray-dark);
    color: var(--white);
    padding: 12px 0;
    position: relative;
}

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

.logo {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.nav {
    display: flex;
}

.nav__list {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav__list a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav__list a:hover {
    color: var(--gray-light-hover);
}

.header__icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon {
    font-size: 24px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.icon:hover {
    color: var(--gray-light-hover);
}

.burger-menu {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.burger-menu .material-symbols-outlined {
    font-size: 28px;
    color: var(--white);
    transition: color 0.3s ease;
}

.burger-menu:hover .material-symbols-outlined {
    color: var(--gray-light-hover);
}

.mobile-menu {
    z-index: 10;
    position: fixed;
    top: 0;
    right: -100%;
    width: clamp(13.9375rem, 12.5625rem + 6.875vw, 18.75rem);
    height: 100vh;
    background: var(--gray-dark-hover);
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: right 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin-bottom: 16px;
}

.mobile-menu a {
    color: var(--white);
    font-size: 1.2rem;
    text-decoration: none;
}

.mobile-menu a:hover {
    color: var(--gray-light-hover);
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }
}

/*--------footer--------------------*/

.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0;
    font-size: 14px;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid var(--gray-dark-hover);
    padding-bottom: 20px;
}

.footer__section {
    flex: 1;
    min-width: 200px;
}

.footer__title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer__links {
    list-style: none;
    padding: 0;
}

.footer__links li {
    margin-bottom: 8px;
}

.footer__links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer__links a:hover {
    color: var(--white);
}

.footer__contact {
    margin-bottom: 8px;
    color: var(--gray-light);
}

.footer__contact a {
    color: var(--white);
    text-decoration: none;
}

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    color: var(--gray-light);
}

.footer__copyright {
    margin-top: 15px;
}

/*--------cookie-banner--------------------*/

.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--gray-dark);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    max-width: 340px;
    width: 100%;
    z-index: 1000;
}

.cookie-banner__text {
    font-size: 0.95rem;
    flex: 1;
    line-height: 1.4;
}

.cookie-banner__buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.button__cookies {
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 10px;
        right: 10px;
        max-width: 90%;
        padding: 16px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .cookie-banner__buttons {
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }

    .cookie-banner__buttons .button {
        flex: 1;
    }
}

.hidden {
    display: none;
}