:root {
    --blue: #a3c436;
    --black: #000;
    --white: #fff;
    --gradient: linear-gradient(90deg, #a3c436 20%, #000 100%);
    --gradient-form: linear-gradient(135deg, #a3c436 30%, #000 100%);
}

@font-face {
    font-family: 'Alegreya';

    src: url('../fonts/Alegreya-VariableFont_wght.ttf') ,
}



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

p {
    font-size: 15px;
}

a {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
    font-family: 'Alegreya';
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: clip;
}

main {
    flex-grow: 1;
}

[class*="__container"] {
    max-width: 1230px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

/* Header */

.header__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-block: 30px;
}

.header-logo,
.header-soc,
.header-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.header-logo img {
    width: 100px;
}

.header-menu {
    gap: 20px;
}

.header-menu a {
    font-size: 15px;
    transition: all 0.8s;
}

.header-menu a:hover {
    color: var(--blue);
    transform: translateY(-5px);
}

.active-menu {
    color: var(--blue);
}

.header-soc {
    gap: 10px;
}

.header-soc img {
    width: 30px;
    border-radius: 5px;
    border: 1px solid var(--black);
    padding: 5px;
}

/* Burger */

.menu-toggle {
    font-size: 30px;
    background: none;
    border: none;
    color: var(--blue);
    cursor: pointer;
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    color: var(--white);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    padding: 20px;
    display: none;
}

.mobile-menu.open {
    transform: translateX(0);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-right: 20px;
}

.close-button {
    font-size: 30px;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
}

.nav-mobile {
    padding-top: 20px;
}

.nav-mobile a {
    display: block;
    text-align: center;
    padding: 16px 0;
    font-size: 18px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

/* Hero */

.hero-section {
    background: var(--gradient);
}

.hero__container {
    padding: 60px 15px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.hero__container h1 {
    color: var(--white);
    font-size: 50px;
    font-weight: 700;
}

.hero__container h2 {
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    color: var(--white);
}

.hero__container p {
    color: var(--white);
}

/* Advantages */

.advantages-section {
    padding-block: 50px;
}

.advantages-heading__container h2 {
    color: var(--black);
    font-size: 35px;
    font-weight: 400;
    text-align: center;
}

.advantages__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 50px;
    gap: 30px;
}

.info-block {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info h3 {
    font-size: 22px;
    font-weight: 600;
}

.form-block {
    flex: 1;
    background: var(--gradient-form);
    padding: 40px;
    border-radius: 8px;
}

.form-block h2 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 35px;
}

.form-block label {
    display: block;
    margin-bottom: 5px;
    color: var(--white);
}

.form-block input,
.form-block textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid var(--black);
    border-radius: 4px;
}

.form-block button {
    width: 100%;
    padding: 10px;
    background-color: var(--white);
    color: var(--black);
    border-radius: 4px;
    cursor: pointer;
    transition: 0.5s;
    font-weight: 400;
    font-size: 18px;
}

.form-block button:hover {
    transform: translateY(5px);
}

/* Footer */

.footer {
    border-top: 1px solid var(--blue);
}

.footer__container {
    padding-block: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.name-block {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 15px;
    gap: 30px;
}

.footer-logo img {
    width: 140px;
}

.footer-contact {
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.legal-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.footer-menu {
    gap: 20px;
    display: flex;
    flex-direction: row;
}

.footer-menu a {
    font-size: 15px;
    transition: all 0.8s;
}

.footer-menu a:hover {
    color: var(--blue);
    transform: translateY(-5px);
}

/* Hotel */

.hotel-section {
    padding-block: 50px;
}

.hotel-heading__container h2 {
    font-size: 35px;
    font-weight: 400;
    text-align: center;
}

.hotel__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-block: 50px;
}

.hotel-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hotel-info strong {
    color: var(--blue);
    padding-right: 5px;
    font-weight: 700;
    font-size: 18px;
}

.hotel-btn__container {
    text-align: center;
}

.hotel-btn__container a button {
    color: var(--blue);
    border-radius: 15px;
    border: 2px solid var(--blue);
    padding: 10px 30px;
    font-size: 22px;
    font-weight: 600;
    transition: all 0.8s;
    background: var(--white);
}

.hotel-btn__container a button:hover {
    transform: translateY(10px);
}

.hotel-photo {
    flex: 1;
}

.hotel-photo img {
    width: 100%;
    border: 1px solid var(--blue);
    border-radius: 15px;
}

.bg {
    background: var(--gradient);
    color: var(--white);
}

.bg strong {
    color: var(--white);
}

/* About */

.about-section {
    padding-block: 50px;
    text-align: center;
}

.about__container h2 {
    font-size: 35px;
    font-weight: 400;
    padding-bottom: 30px;
}

.why-section {
    padding-block: 50px;
    background: var(--gradient);
    text-align: center;
    color: var(--white);
}

.why-heading__container h2 {
    font-size: 35px;
    font-weight: 400;
    padding-bottom: 30px;

}

.why__container {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.why-block {
    flex: 1;
}

.why-block strong {
    padding-right: 5px;
    font-weight: 700;
    font-size: 18px;
}

/* Contact */

.contact-section {
    padding-block: 50px;
}

.form-width {
    width: 50%;
    margin: 0 auto;
}

/* Politic */

.politic-section {
    padding-block: 50px;
}

.politic__container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Media */

@media (max-width: 800px) {

    /* Header */

    .header-soc {
        display: none;
    }

    .header__container {
        padding-block: 5px;
    }

    .header-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    /* Hero */

    .hero__container h1 {
        font-size: 30px;
    }

    .hero__container h2 {
        font-size: 15px;
    }


    /* Advantages */

    .advantages-heading__container h2 {
        font-size: 25px;
    }

    .advantages__container {
        flex-direction: column;
    }

    .form-block h2 {
        font-size: 25px;
    }

    /* Footer */

    .legal-block {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    /* Hotel */

    .hotel-heading__container h2 {
        font-size: 25px;
    }

    .hotel__container {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .reverse {
        flex-direction: column;
    }

    /* About */

    .about__container h2 {
        font-size: 25px;
    }


    .why-heading__container h2 {
        font-size: 25px;

    }

    .why__container {
        flex-direction: column;
    }

    /* Contact */

    .form-width {
        width: 80%;
    }
}

@media (max-width: 600px) {
    /* Footer */

    .name-block {
        flex-direction: column;
        gap: 15px;
    }

    .footer-menu {
        gap: 10px;
        flex-direction: column;
    }

    /* Contact */

    .form-width {
        width: 100%;
    }
}