:root {
    --primary: #6d28d9;
    --secondary: #a78bfa;
    --accent: #f472b6;
    --dark: #1e293b;
    --light: #f1f5f9;
    --white: #ffffff;
    --gray: #94a3b8;
    --success: #10b981;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 8px;
}

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

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            color: var(--dark);
            background-color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

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

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }

        .btn:hover {
            background: #5b21b6;
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

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

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

        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            text-align: center;
            position: relative;
            color: var(--dark);
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
        }

        .section-desc {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 40px;
            color: var(--gray);
            font-size: 1.1rem;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        header.scrolled {
            padding: 10px 0;
            background-color: var(--white);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            transition: var(--transition);
        }

        .logo {
            display: flex;
            align-items: center;
        }

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block; /* 🔑 важливо */
}


        .logo span {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin: 0 15px;
        }

        .nav-links a {
            font-weight: 500;
            position: relative;
            padding: 5px 0;
            transition: var(--transition);
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover:after,
        .nav-links a.active:after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--dark);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(109,40,217,0.15), rgba(244,114,182,0.1)), 
                        url('images/hero-bg.avif');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            text-align: center;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(30, 41, 59, 0.7);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .hero .btn {
    background-color: var(--white);
    color: var(--primary);
    font-weight: bold;
}

.hero .btn:hover {
    background-color: var(--secondary);
    color: var(--white);
}

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.2rem;
            margin-bottom: 25px;
        }

        .about-features {
            margin: 30px 0;
        }

        .feature {
            display: flex;
            margin-bottom: 20px;
        }

        .feature i {
            color: var(--primary);
            font-size: 1.8rem;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .feature-content h3 {
            font-size: 1.3rem;
            margin-bottom: 8px;
        }

        .about-image {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Gallery Section */
        .gallery-section {
            background-color: var(--white);
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .gallery-item {
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            height: 300px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: var(--white);
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-caption {
            opacity: 1;
        }

        /* Contact form */
        .contact-form {
    padding: 30px;
    background: var(--light);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    font-size: 1rem;
    background-color: var(--white);
    color: var(--dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.2);
}



        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 60px 0 20px;
        }

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

        .footer-about h3,
        .footer-links h3,
        .footer-contact h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-about h3:after,
        .footer-links h3:after,
        .footer-contact h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent);
        }

        .footer-about p {
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a {
            display: block;
            transition: var(--transition);
            color: var(--gray);
        }

        .footer-links ul li a:hover {
            color: var(--white);
            transform: translateX(5px);
        }

        .footer-contact ul {
            list-style: none;
        }

        .footer-contact ul li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .footer-contact ul li i {
            color: var(--primary);
            margin-right: 15px;
            font-size: 1.2rem;
        }

        .footer-bottom {
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.9rem;
            color: var(--gray);
        }

        /* Cookie Popup */
        .cookie-popup {
            position: fixed;
            bottom: 20px;
            right: 20px;
            max-width: 350px;
            background: var(--white);
            box-shadow: var(--shadow-lg);
            border-radius: var(--radius);
            padding: 25px;
            z-index: 1000;
            display: none;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.5s ease;
        }

        .cookie-popup.active {
            display: block;
            transform: translateY(0);
            opacity: 1;
        }

        .cookie-popup h3 {
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .cookie-popup p {
            margin-bottom: 20px;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        /* Page Content */
        .page-content {
            max-width: 800px;
            margin: 120px auto;
            padding: 0 20px;
        }

        .page-content h1 {
            font-size: 2.5rem;
            margin-bottom: 30px;
        }

        .page-content h2 {
            font-size: 1.8rem;
            margin: 40px 0 20px;
            color: var(--primary);
        }

        .page-content h3 {
            font-size: 1.4rem;
            margin: 30px 0 15px;
        }

        .page-content p {
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .page-content ul {
            margin-left: 30px;
            margin-bottom: 30px;
        }

        .page-content li {
            margin-bottom: 10px;
        }

        /* Responsive Styles */
        @media screen and (max-width: 1024px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .about-content {
                gap: 30px;
            }
        }

        @media screen and (max-width: 768px) {
            .section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2rem;
            }

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

            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                flex-direction: column;
                background: var(--white);
                padding: 20px 0;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: all 0.4s ease;
            }

            .nav-links.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }

            .nav-links li {
                margin: 15px 0;
                text-align: center;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .hero-btns {
                flex-direction: column;
                align-items: center;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        @media screen and (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }

            .hero-btns .btn {
                width: 100%;
                margin-bottom: 10px;
            }

            .cookie-popup {
                left: 20px;
                right: 20px;
                max-width: none;
            }

            .cookie-buttons {
                flex-direction: column;
            }
        }
