/*
    Developed by: Igor Kalen  
    Contact: igor@igorkalen.dev  
    Creation Date: July 31, 2025  
    Last Updated: August 1, 2025
    Version: 1.0.0
    Status: IN PRODUCTION
    File: index.css

    ----
    © 2025 Laius Entertainment. All rights reserved.

    This code is the exclusive property of Laius Entertainment.  
    Unauthorized use, copying, distribution, or modification  
    is strictly prohibited.

    For internal use only on systems, services, and domains  
    officially managed by Laius Entertainment.
*/
        :root {
            --primary: #27742d;
            --primary-light: #2f8235;
            --primary-dark: #1e5d22;
            --text-primary: #3a3a3f;
            --text-secondary: #666666;
            --text-muted: #999999;
            --background: #ffffff;
            --background-subtle: #fafafa;
            --border: #e5e7eb;
            --border-light: #f3f4f6;
            --shadow: rgba(0, 0, 0, 0.04);
            --shadow-md: rgba(0, 0, 0, 0.08);
        }

        .feedback-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 320px;
    box-shadow: 0 8px 32px var(--shadow-md);
    z-index: 10001;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.feedback-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.feedback-popup.hide {
    transform: translateY(100px);
    opacity: 0;
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.feedback-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.feedback-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.feedback-close:hover {
    background: var(--background-subtle);
    color: var(--text-primary);
}

.feedback-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.feedback-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.feedback-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

        .announcement-banner {
            background: var(--primary);
            color: white;
            padding: 12px 20px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .announcement-banner.hidden {
            transform: translateY(-100%);
        }

        .announcement-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            max-width: 1200px;
            width: 100%;
            position: relative;
        }

        .announcement-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
        }

        .announcement-text {
            text-align: center;
            line-height: 1.4;
        }

        .announcement-text strong {
            font-weight: 600;
        }

        .announcement-text a {
            color: white;
            text-decoration: underline;
            font-weight: 500;
        }

        .announcement-text a:hover {
            text-decoration: none;
        }

        .second-announcement {
  background: var(--primary);
  color: white;
  padding: 12px 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.second-announcement.hidden {
  transform: translateY(100%);
}

        .close-button {
            position: absolute;
            right: 0;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 4px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
            width: 24px;
            height: 24px;
        }

        .close-button:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .close-button svg {
            width: 16px;
            height: 16px;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--background);
            font-size: 16px;
        }

        .navbar {
            position: fixed;
            top: 44px;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .navbar.banner-hidden {
            top: 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            display: flex;
            align-items: center;
            height: 60px;
            transition: opacity 0.2s ease;
        }

        .logo img {
            height: 100%;
            width: auto;
            display: block;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 400;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }

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

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.25rem;
            cursor: pointer;
            padding: 0.5rem;
            flex-direction: column;
            gap: 4px;
            width: 32px;
            height: 32px;
            align-items: center;
            justify-content: center;
        }

        .mobile-nav-menu {
            position: fixed;
            top: 114px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transform: translateY(-200%);
            transition: transform 0.3s ease;
            z-index: 999;
            padding: 3rem;
        }

        .mobile-nav-menu.banner-hidden {
            top: 70px;
        }

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

        .mobile-nav-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            text-align: center;
        }

        .mobile-nav-menu .nav-link {
            font-size: 1.1rem;
            padding: 0.5rem 0;
            display: block;
        }

        .hero {
            padding: 184px 2rem 100px;
            text-align: center;
            background: var(--background);
        }

        .hero.banner-hidden {
            padding-top: 140px;
        }

        .hero-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--background-subtle);
            border: 1px solid var(--border);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .hero-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .hero-description {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 0.875rem 1.75rem;
            border-radius: 8px;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s ease;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
        }

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

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border);
        }

        .btn-secondary:hover {
            background: var(--background-subtle);
            border-color: var(--primary);
        }

        .experiences-section {
            padding: 100px 2rem;
            background: var(--background-subtle);
        }

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

        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--text-primary);
        }

        .experiences-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
        }

        .experience-card {
            background: var(--background);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 2rem;
            transition: all 0.2s ease;
        }

        .experience-card:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 20px var(--shadow-md);
            transform: translateY(-2px);
        }

        .experience-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

       .experience-icon {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
}

        .experience-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .experience-description {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .experience-stats {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .stat {
            background: var(--background-subtle);
            padding: 0.375rem 0.75rem;
            border-radius: 20px;
            font-size: 0.875rem;
            color: var(--text-secondary);
            border: 1px solid var(--border-light);
        }

        .experience-links {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .experience-link {
            padding: 0.625rem 1.25rem;
            background: var(--background-subtle);
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.875rem;
            transition: all 0.2s ease;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 0.375rem;
        }

        .experience-link svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        .benefits-section {
            padding: 100px 2rem;
            background: var(--background);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .benefit-card {
            background: var(--background-subtle);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: all 0.2s ease;
        }

        .benefit-card:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--shadow-md);
        }

        .benefit-icon {
            width: 64px;
            height: 64px;
            background: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
        }

        .benefit-icon svg {
            width: 32px;
            height: 32px;
            fill: currentColor;
        }

        .benefit-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .benefit-description {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .parents-section {
            padding: 100px 2rem;
            background: var(--background-subtle);
        }

        .info-card {
            background: var(--background);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.2s ease;
        }

        .info-card:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 20px var(--shadow-md);
        }

        .info-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .info-card p {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .info-card p:last-child {
            margin-bottom: 0;
        }

        .info-card ol, .info-card ul {
            margin-left: 1.5rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .info-card li {
            margin-bottom: 0.5rem;
        }

        .info-card a {
            color: var(--primary);
            text-decoration: underline;
            font-weight: 500;
        }

        .info-card a:hover {
            text-decoration: none;
        }

        .news-section {
            padding: 100px 2rem;
            background: var(--background);
        }

        .news-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .news-slider-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }

        .news-slider {
            display: flex;
            transition: transform 0.3s ease;
            gap: 2rem;
        }

        .news-card {
            position: relative;
            flex: 0 0 calc(100% - 7rem);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.2s ease;
            background: var(--background);
            margin: 0 3.5rem;
        }

        .news-card:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 20px var(--shadow-md);
        }

        .news-arrow {
            position: absolute;
            top: 50%;
            right: 1rem;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid var(--border);
            border-radius: 50%;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            z-index: 10;
            box-shadow: 0 4px 12px var(--shadow);
        }

        .news-arrow:hover:not(:disabled) {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .news-arrow:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .news-arrow.prev {
            left: 0px;
        }

        .news-arrow.next {
            right: -0px;
        }

        .news-arrow svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .news-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 2rem;
            padding-bottom: 1px; /* cut out fix */
        }

        .indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--border);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .indicator.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        .indicator:hover {
            background: var(--primary);
        }

        .news-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            max-width: 100%;
            max-height: 100%;
        }

        .news-content {
            padding: 1.5rem;
        }

        .news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        .news-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
            line-height: 1.4;
        }

        .news-excerpt {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .read-more {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            transition: gap 0.2s ease;
        }

        .read-more svg {
            display: block;
            transform: translateY(1px);
        }

        .read-more:hover {
            gap: 0.5rem;
        }

        .contact-section {
            padding: 100px 2rem;
            background: var(--background-subtle);
            text-align: center;
        }

        .contact-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .contact-description {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .contact-link {
            padding: 0.875rem 1.75rem;
            background: var(--background);
            border: 1px solid var(--border);
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .contact-link:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-1px);
        }

        .footer {
            background: var(--background);
            padding: 3rem 2rem 2rem;
            border-top: 1px solid var(--border);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }

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

        .footer-text {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .announcement-content {
                padding: 0 0rem 0 0rem;
            }

            .announcement-text {
                font-size: 13px;
            }

            .announcement-icon {
                width: 18px;
                height: 18px;
            }

            .close-button {
                position: relative;
                margin-left: auto;
                flex-shrink: 0;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .experiences-grid,
            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .experiences-grid .experience-card {
                min-width: auto;
            }

            .cta-buttons,
            .contact-links {
                flex-direction: column;
                align-items: center;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-container {
                padding: 0 1rem;
            }

            .hero,
            .experiences-section,
            .benefits-section,
            .news-section,
            .contact-section {
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .news-card {
                flex: 0 0 calc(100% - 2rem);
                margin: 0 1rem;
            }

            .news-arrow {
                display: none;
            }
             .feedback-popup {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: none;
    }
        }