@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@400;500;600;700&display=swap');

@font-face {
    font-family: 'Sensei';
    src: url('../fonts/Sensei-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-primary: #E74C25;
    --color-primary-hover: #0A303A;
    --color-heading: #0A303A;
    --color-overlay: rgba(0, 0, 0, 0.05);
    --color-hero-bg: #A0C3CE;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-light-gray: #f5f5f5;
    
    --font-heading: 'Sensei', sans-serif;
    --font-body: 'Catamaran', sans-serif;
    
    --max-width: 1260px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--color-white);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
    overflow-x: hidden;
}

.header--scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.header__logo {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-heading);
    font-weight: 500;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header__menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.header__menu-link {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-heading);
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.header__menu-link:hover {
    color: var(--color-primary);
}

.header__menu-link:hover::after {
    width: 100%;
}

.header__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.header__phone {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-heading);
    transition: color 0.3s ease;
}

.header__phone:hover {
    color: var(--color-primary);
}

.header__cta {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.header__cta:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
}

.header__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.header__mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-heading);
    transition: transform 0.3s ease;
}

.hero {
    position: relative;
    min-height: 49vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    background-color: var(--color-hero-bg);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.gradinitasfstelian.ro/wp-content/uploads/2022/02/children-playing-grass1.jpg');
    background-size: cover;
    background-position: center;
}

.hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.05);
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 20px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 220px;
    color: var(--color-white);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: -20px;
    max-width: 100%;
}

.hero__heading {
    font-family: var(--font-heading);
    font-size: 80px;
    color: var(--color-white);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 42px;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero__cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--color-white);
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--color-white);
}

.hero__btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.section {
    padding: 80px 0;
}

.section__title {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 20px;
}

.section__subtitle {
    font-family: var(--font-body);
    font-size: 24px;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 50px;
}

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

.about__tagline {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-heading);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.about__text {
    font-size: 18px;
    line-height: 1.8;
}

.about__image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about__image img {
    width: 100%;
    height: auto;
}

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

.offer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.offer__card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.offer__icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.offer__icon svg {
    width: 30px;
    height: 30px;
    fill: var(--color-white);
}

.offer__text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text);
}

.offer__pricing {
    max-width: 700px;
    margin: 60px auto 0;
    text-align: center;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--color-primary);
}

.offer__price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.offer__price-label {
    font-size: 18px;
    color: #666;
    margin-bottom: 5px;
}

.offer__price-value {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--color-primary);
    font-weight: 500;
}

.offer__includes {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.offer__discount {
    font-size: 18px;
    color: var(--color-heading);
    font-weight: 600;
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--color-light-gray);
    border-radius: 8px;
}

.offer__cta {
    font-size: 20px;
    color: var(--color-heading);
    font-weight: 600;
    line-height: 1.5;
    margin-top: 20px;
}

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

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.schedule__list {
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
}

.schedule__item {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background-color: var(--color-white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.schedule__item:hover {
    transform: translateX(10px);
}

.schedule__time {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-primary);
    min-width: 120px;
}

.schedule__activity {
    font-size: 18px;
    color: var(--color-text);
    font-weight: 500;
}

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

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact__icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-white);
}

.contact__label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.contact__value {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-heading);
}

.contact__map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact__map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.footer {
    background-color: var(--color-heading);
    color: var(--color-white);
    padding: 40px 0;
    text-align: center;
}

.footer__text {
    font-size: 16px;
    opacity: 0.8;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox--active {
    opacity: 1;
    visibility: visible;
}

.lightbox__content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox__content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 4px;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--color-white);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.lightbox__close:hover {
    color: var(--color-primary);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: var(--color-white);
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s ease;
}

.lightbox__nav:hover {
    color: var(--color-primary);
}

.lightbox__prev {
    left: 20px;
}

.lightbox__next {
    right: 20px;
}

.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-white);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    padding: 30px;
    overflow-y: auto;
}

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

.mobile-menu__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu__link {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-heading);
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #eee;
}

.mobile-menu__contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--color-primary);
}

.mobile-menu__phone {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 10px;
}

.mobile-menu__cta {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
}

@media (max-width: 1025px) {
    .hero__title {
        font-size: 150px;
    }
    
    .hero__heading {
        font-size: 60px;
    }
    
    .hero__subtitle {
        font-size: 32px;
    }
    
    .about__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .header__nav {
        display: none;
    }
    
    .header__mobile-toggle {
        display: flex;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero__title {
        font-size: 80px;
        margin-bottom: -10px;
    }
    
    .hero__heading {
        font-size: 40px;
    }
    
    .hero__subtitle {
        font-size: 24px;
    }
    
    .hero__cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section__title {
        font-size: 36px;
    }
    
    .section__subtitle {
        font-size: 18px;
    }
    
    .about__tagline {
        font-size: 24px;
    }
    
    .gallery__grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .offer__grid {
        grid-template-columns: 1fr;
    }
    
    .hero__title {
        font-size: 60px;
    }
    
    .hero__heading {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 48px;
    }
    
    .hero__heading {
        font-size: 28px;
    }
    
    .hero__subtitle {
        font-size: 20px;
    }
}
