@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&display=swap');

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

body {
    font-family: 'Cormorant Garamond', serif;
    color: #2c3e50;
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

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

/* ================= HEADER ================= */

header {
    background: #485262;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.header__logo img {
    height: 50px;
}

.header__menu {
    display: flex;
    gap: 30px;
}

.header__menu a {
    color: rgba(255, 255, 255, 0.696);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 20px;
}

.header__menu a:hover {
    color: #63D1B7
}

.header__button button {
    background: #2C9C93;
    color: #0D587C;
    border: none;
    padding: 12px 30px;
    border-radius: 35px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.header__button button:hover {
    background: rgba(107, 219, 193, 0.812);
}

/* ================= BURGER ================= */

.burger {
    display: none;
    width: 32px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.burger figure {
    height: 3px;
    width: 100%;
    background: #2C9C93;
    border-radius: 3px;
    transition: 0.4s ease;
}

.burger.active figure:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.burger.active figure:nth-child(2) {
    opacity: 0;
}

.burger.active figure:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ================= MOBILE MENU ================= */

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100vh;
    background: #485262;
    padding: 100px 40px;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15);
    transition: 0.4s ease;
    z-index: 1000;
}

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

.mobile-menu__content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu a {
    text-decoration: none;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.696);
    transition: 0.3s;
}

.mobile-menu a:hover {
    transform: translateX(5px);
    color: #63D1B7;
}

.mobile-menu__btn {
    margin-top: 30px;
    padding: 12px;
    border: none;
    background: #2C9C93;
    color: #0D587C;
    font-size: 16px;
    border-radius: 35px;
    cursor: pointer;
}

/* ================= OVERLAY ================= */

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 900;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    overflow: hidden;
    /* Видаляємо фіксовану висоту 600px */
}

.heroSwiper {
    width: 100%;
    height: 90vh;
    height: 90dvh;
    max-height: 700px;
    /* обмежуємо на великих екранах */
}

swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

swiper-slide picture,
swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* або contain, якщо не хочеш обрізати */
}

/* ================= WELCOME ================= */

.welcome {
    padding: 80px 0;
    background: #21492E;
}

.welcome__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.welcome h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.696);
}

.welcome__subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.696);
    margin-bottom: 30px;
    font-style: italic;
}

.welcome p {
    color: rgba(255, 255, 255, 0.696);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.welcome__button button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 35px;
    background: #2C9C93;
    color: #0D587C;
    transition: 0.3s ease;

    border: none;
    outline: none;
    cursor: pointer;
}

.welcome__button button:focus {
    outline: none;
}

.welcome__button button:hover {
    background: rgba(107, 219, 193, 0.812);
    transform: translateY(-3px);
}

/* ================= FEATURES ================= */

.features {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.696);
}

.features h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature__item {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
}

.feature__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature__icon img {
    width: 60px;
    height: 60px;
}

.feature__item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0D587C;
}

.feature__item p {
    font-size: 18px;
    color: #0D587C;
}

/* ================= LOCATION ================= */

.location {
    padding: 80px 0;
    background: #21492E;
}

.location h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.696);
}

.location__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}


.location__info ul {
    color: rgba(255, 255, 255, 0.696);
    list-style: none;
    font-size: 25px;
}

.location__info li {
    color: rgba(255, 255, 255, 0.696);
    padding: 15px 0;
    font-size: 22px;
    border-bottom: 1px solid #ddd;
}

/* ================= ACTIVITIES ================= */

.activities {
    padding: 80px 0;
}

.activities h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
}

.activities__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.activity__card h3 {
    font-size: 24px;
}

.activity__card li {
    font-size: 18px;
}

.activity__card {

    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #485262;
    ;
    color: #0D587C;
}

/* ================= CTA ================= */

.cta {
    padding: 80px 0;
    background: #21492E;
    color: rgba(255, 255, 255, 0.696);
    text-align: center;
}

.cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta button {
    background: #2C9C93;
    color: #0D587C;
    border: none;
    padding: 15px 50px;
    border-radius: 35px;
    font-size: 18px;
    cursor: pointer;
}

.cta button:hover {
    background: rgba(107, 219, 193, 0.812);
    transform: translateY(-3px);
}

/* ================= FOOTER ================= */

footer {
    background: #485262;
    color: rgba(255, 255, 255, 0.696);
    padding: 50px 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer__section h3 {
    margin-bottom: 20px;
}

.footer__section a,
.footer__section p {
    color: rgba(255, 255, 255, 0.696);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer__section a:hover {
    color: #63D1B7
}

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: rgba(255, 255, 255, 0.696);
}

/* ================= TABLET ================= */

@media (max-width: 992px) {

    .features__grid,
    .activities__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location__content {
        grid-template-columns: 1fr;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .heroSwiper {
        height: 420px;
        /* або 100dvh — пробуй що краще виглядає */
        max-height: none;
    }

    swiper-slide picture,
    swiper-slide img {
        object-position: center;
        /* можна змінити на center top / center bottom */
    }

    .header__logo img {
        height: 40px;
        width: 40px;
    }

    .header__wrapper {
        max-height: 90px;
        align-items: center;
    }



    .header__menu,
    .header__button {
        display: none;
    }

    .burger {
        display: flex;
    }


    .welcome,
    .features,
    .location,
    .activities,
    .cta {
        padding: 60px 0;
    }

    .welcome__content h1 {
        font-size: 34px;
    }

    .features h2,
    .location h2,
    .activities h2,
    .cta h2 {
        font-size: 28px;
    }

    .features h3,
    .location h3,
    .activities h3,
    .cta h3,
    .footer__section h3 {
        font-size: 22px;
    }

    .features p,
    .location p,
    .activities p,
    .cta p,
    .footer__section p,
    .features li,
    .location li,
    .activities li,
    .cta li,
    .footer__section a,
    .footer__bottom p {
        font-size: 20px;
    }

    .features__grid,
    .activities__grid {
        grid-template-columns: 1fr;
    }

    .location__content {
        grid-template-columns: 1fr;
    }

    .cta button {
        width: 100%;
        max-width: 300px;
    }

    .container {
        padding: 0 16px;
    }

    .feature__icon img {
        width: 48px;
        height: 48px;
    }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {
    .heroSwiper {
        height: 360px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    p,
    li {
        font-size: 14px;
    }
}