<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Solenya - Cute & Artistic Design</title>
    <link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        /* ===== Solenya - Cute & Artistic Style ===== */
        :root {
            /* Color Palette */
            --primary-pink: #ff85a2;
            --secondary-pink: #ffb6c1;
            --soft-purple: #d4b5ff;
            --light-blue: #a6e3ff;
            --pastel-yellow: #fff9c4;
            --mint-green: #b5ffd9;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
            --dark-text: #4a4a4a;
            --darker-text: #2d3748;
            
            /* Shadows */
            --soft-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            --cute-shadow: 0 8px 25px rgba(255, 133, 162, 0.15);
            --hover-shadow: 0 12px 30px rgba(255, 133, 162, 0.25);
            
            /* Border Radius */
            --border-radius: 20px;
            --border-radius-small: 12px;
            --border-radius-large: 30px;
            
            /* Transitions */
            --transition-fast: 0.3s ease;
            --transition-slow: 0.5s ease;
        }

        /* ===== Base Styles ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #fff5f7 0%, #f0f8ff 100%);
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Nunito', sans-serif;
            font-weight: 700;
            line-height: 1.3;
        }

        /* ===== Header & Navigation ===== */
        .header {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(10px);
            padding: 1.2rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: var(--soft-shadow);
            border-bottom-left-radius: var(--border-radius);
            border-bottom-right-radius: var(--border-radius);
            transition: all var(--transition-fast);
        }

        .header.scrolled {
            padding: 0.8rem 2rem;
            background: rgba(255, 255, 255, 0.98);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--primary-pink), var(--soft-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            position: relative;
            display: flex;
            align-items: center;
        }

        .logo-icon {
            margin-right: 10px;
            font-size: 1.8rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-text);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius-small);
            transition: all var(--transition-fast);
            position: relative;
        }

        .nav-links a:hover {
            background: var(--primary-pink);
            color: var(--white);
            transform: translateY(-2px);
        }

        .nav-links a::before {
            content: "✨";
            position: absolute;
            left: -10px;
            opacity: 0;
            transition: opacity var(--transition-fast);
        }

        .nav-links a:hover::before {
            opacity: 1;
        }

        /* ===== Hero Section ===== */
        .hero {
            padding: 150px 2rem 100px;
            text-align: center;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ff85a220"><path d="M500 50Q400 0 300 50T100 50T0 0v100h1000V0Q600 100 500 50z"/></svg>') bottom no-repeat;
            background-size: cover;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ff85a2" opacity="0.2"/></svg>') repeat;
            animation: float 20s infinite linear;
            z-index: -1;
        }

        @keyframes float {
            0% { transform: translateY(0) translateX(0); }
            100% { transform: translateY(-100px) translateX(50px); }
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, var(--primary-pink), var(--soft-purple), var(--light-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: float 3s ease-in-out infinite;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            color: var(--dark-text);
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(45deg, var(--primary-pink), var(--soft-purple));
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: var(--cute-shadow);
            transition: all var(--transition-fast);
            position: relative;
            overflow: hidden;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: var(--hover-shadow);
        }

        .cta-button::before {
            content: "🎀";
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
        }

        /* ===== Features Section ===== */
        .features {
            padding: 100px 2rem;
            background: var(--white);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--darker-text);
            position: relative;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, var(--primary-pink), var(--soft-purple));
            border-radius: 2px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--soft-shadow);
            text-align: center;
            transition: all var(--transition-fast);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(45deg, var(--primary-pink), var(--soft-purple));
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--cute-shadow);
            border-color: var(--primary-pink);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: block;
            background: linear-gradient(45deg, var(--primary-pink), var(--soft-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .feature-card h3 {
            color: var(--darker-text);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .feature-card p {
            color: var(--dark-text);
            opacity: 0.8;
        }

        /* ===== Gallery Section ===== */
        .gallery {
            padding: 100px 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-item {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--soft-shadow);
            transition: all var(--transition-fast);
            height: 250px;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .gallery-item:hover {
            transform: translateY(-5px) rotate(2deg);
            box-shadow: var(--cute-shadow);
        }

        .gallery-item::before {
            content: "🌸";
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            opacity: 0.7;
        }

        .gallery-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--secondary-pink), var(--light-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            font-weight: 600;
        }

        /* ===== Testimonials Section ===== */
        .testimonials {
            padding: 100px 2rem;
            background: var(--white);
        }

        .testimonials-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-card {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--soft-shadow);
            margin: 1rem;
            position: relative;
        }

        .testimonial-card::before {
            content: """;
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 4rem;
            color: var(--primary-pink);
            opacity: 0.3;
            font-family: serif;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary-pink), var(--soft-purple));
            margin-right: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        /* ===== Footer ===== */
        .footer {
            background: linear-gradient(135deg, var(--darker-text) 0%, #2d3748 100%);
            color: var(--white);
            padding: 3rem 2rem 1rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: var(--primary-pink);
            position: relative;
            display: inline-block;
        }

        .footer-section h3::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary-pink);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--light-gray);
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        .footer-links a:hover {
            color: var(--primary-pink);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 1rem;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            text-decoration: none;
            transition: all var(--transition-fast);
        }

        .social-links a:hover {
            background: var(--primary-pink);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* ===== Cute Elements ===== */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-element {
            position: absolute;
            font-size: 1.5rem;
            opacity: 0.3;
            animation: floatAround 15s infinite linear;
        }

        @keyframes floatAround {
            0% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(100px, 100px) rotate(90deg); }
            50% { transform: translate(50px, 200px) rotate(180deg); }
            75% { transform: translate(-50px, 100px) rotate(270deg); }
            100% { transform: translate(0, 0) rotate(360deg); }
        }

        /* ===== Responsive Design ===== */
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                gap: 1rem;
            }
            
            .nav-links {
                gap: 1rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 1rem;
            }
            
            .nav-links {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }
            
            .hero {
                padding: 120px 1rem 80px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .feature-card, .testimonial-card {
                padding: 1.5rem;
            }
        }

        /* ===== Additional Effects ===== */
        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 4px solid var(--secondary-pink);
            border-top: 4px solid var(--primary-pink);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 2rem auto;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .glow-text {
            text-shadow: 0 0 10px rgba(255, 133, 162, 0.5);
        }

        /* Secondary Button Style */
        .secondary-button {
            background: transparent;
            border: 2px solid var(--primary-pink);
            color: var(--primary-pink);
        }

        .secondary-button:hover {
            background: var(--primary-pink);
            color: var(--white);
        }
    </style>
</head>
<body>
    <!-- Floating Elements -->
    <div class="floating-elements">
        <div class="floating-element" style="top: 10%; left: 5%;">🌸</div>
        <div class="floating-element" style="top: 20%; left: 90%;">✨</div>
        <div class="floating-element" style="top: 50%; left: 7%;">🎀</div>
        <div class="floating-element" style="top: 70%; left: 85%;">💖</div>
        <div class="floating-element" style="top: 85%; left: 15%;">🌟</div>
    </div>

    <!-- Header -->
    <header class="header" id="header">
        <nav class="navbar">
            <a href="#" class="logo">
                <span class="logo-icon">🌺</span>
                Solenya
            </a>
            <ul class="nav-links">
                <li><a href="#">Home</a></li>
                <li><a href="#">Features</a></li>
                <li><a href="#">Gallery</a></li>
                <li><a href="#">Testimonials</a></li>
                <li><a href="#">Contact</a></li>
            </ul>
        </nav>
    </header>

    <!-- Hero Section -->
    <section class="hero">
        <div class="hero-content">
            <h1>Welcome to Solenya</h1>
            <p>A magical place where creativity meets cuteness. Discover our unique collection of artistic designs and charming creations.</p>
            <a href="#" class="cta-button">Explore Now</a>
        </div>
    </section>

    <!-- Features Section -->
    <section class="features">
        <h2 class="section-title">Our Features</h2>
        <div class="features-grid">
            <div class="feature-card">
                <span class="feature-icon">🎨</span>
                <h3>Artistic Designs</h3>
                <p>Beautiful and unique designs created with love and attention to detail.</p>
            </div>
            <div class="feature-card">
                <span class="feature-icon">💖</span>
                <h3>Cute Aesthetic</h3>
                <p>Everything is designed with a charming and adorable aesthetic in mind.</p>
            </div>
            <div class="feature-card">
                <span class="feature-icon">✨</span>
                <h3>Magical Experience</h3>
                <p>An enchanting experience that will make you feel like you're in a fairy tale.</p>
            </div>
        </div>
    </section>

    <!-- Gallery Section -->
    <section class="gallery">
        <h2 class="section-title">Our Gallery</h2>
        <div class="gallery-grid">
            <div class="gallery-item">
                <div class="gallery-placeholder">Artwork 1</div>
            </div>
            <div class="gallery-item">
                <div class="gallery-placeholder">Design 2</div>
            </div>
            <div class="gallery-item">
                <div class="gallery-placeholder">Creation 3</div>
            </div>
            <div class="gallery-item">
                <div class="gallery-placeholder">Project 4</div>
            </div>
        </div>
    </section>

    <!-- Testimonials Section -->
    <section class="testimonials">
        <h2 class="section-title">What People Say</h2>
        <div class="testimonials-container">
            <div class="testimonial-card">
                <p class="testimonial-text">Solenya has the most adorable designs I've ever seen! Their attention to detail is incredible.</p>
                <div class="testimonial-author">
                    <div class="author-avatar">JS</div>
                    <div>
                        <h4>Jane Smith</h4>
                        <p>Art Director</p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="footer">
        <div class="footer-content">
            <div class="footer-section">
                <h3>About Solenya</h3>
                <p>We create cute and artistic designs that bring joy and inspiration to everyday life.</p>
            </div>
            <div class="footer-section">
                <h3>Quick Links</h3>
                <ul class="footer-links">
                    <li><a href="#">Home</a></li>
                    <li><a href="#">Features</a></li>
                    <li><a href="#">Gallery</a></li>
                    <li><a href="#">Contact</a></li>
                </ul>
            </div>
            <div class="footer-section">
                <h3>Connect With Us</h3>
                <div class="social-links">
                    <a href="#"><i class="fab fa-instagram"></i></a>
                    <a href="#"><i class="fab fa-pinterest"></i></a>
                    <a href="#"><i class="fab fa-twitter"></i></a>
                    <a href="#"><i class="fab fa-facebook-f"></i></a>
                </div>
            </div>
        </div>
        <div class="footer-bottom">
            <p>&copy; 2023 Solenya. All rights reserved. | Designed with 💖</p>
        </div>
    </footer>

    <script>
        // Header scroll effect
        window.addEventListener('scroll', function() {
            const header = document.getElementById('header');
            if (window.scrollY > 50) {
                header.classList.add('scrolled');
            } else {
                header.classList.remove('scrolled');
            }
        });
    </script>
</body>
</html>