<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>STUDIO 13 FAMILY SALON - Stylish Haircuts and Beauty Services</title>
    <!-- Font Awesome for icons -->
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            overflow-x: hidden;
        }

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

        .site-header {
            background: rgba(255, 255, 255, 0.95);
            padding: 20px 0;
            border-bottom: 2px solid #d32f2f;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .site-header h1 {
            text-align: center;
            color: #d32f2f;
            font-size: 2.5em;
            font-weight: bold;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        nav {
            text-align: center;
            margin-top: 15px;
        }

        nav a {
            margin: 0 20px;
            text-decoration: none;
            font-weight: bold;
            color: #333;
            font-size: 1.1em;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        nav a:hover {
            color: #d32f2f;
            transform: scale(1.1);
        }

        /* HERO */
.hero {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    color: #fff;
    overflow: hidden;
}

/* Background image + overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)
        ),
        url('https://www.studio13salon.com/images/salon13.jpg') center/cover no-repeat;
    z-index: 1;
}

/* Keep text above background */
.hero * {
    position: relative;
    z-index: 2;
}


        .hero h2 {
            font-size: 3em;
            margin-bottom: 20px;
            z-index: 2;
            position: relative;
        }

        .hero p {
            font-size: 1.3em;
            margin-bottom: 30px;
            z-index: 2;
            position: relative;
        }

        .hero .btn {
            background: #d32f2f;
            color: #fff;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1em;
            transition: background 0.3s ease, transform 0.3s ease;
            z-index: 2;
            position: relative;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .hero .btn:hover {
            background: #b71c1c;
            transform: translateY(-5px);
        }

        .about {
            padding: 60px 0;
            background: #fff;
            text-align: center;
        }

        .about h2 {
            color: #d32f2f;
            margin-bottom: 20px;
            font-size: 2.5em;
        }

        .about p {
            font-size: 1.2em;
            max-width: 800px;
            margin: auto;
        }

        .services-preview {
            padding: 60px 0;
            background: #f9f9f9;
        }

        .services-preview h2 {
            text-align: center;
            color: #d32f2f;
            margin-bottom: 40px;
            font-size: 2.5em;
        }

        .services-preview .grid {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .service-box {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 300px;
        }

        .service-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .service-box img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .service-box h3 {
            padding: 15px;
            color: #d32f2f;
            font-size: 1.5em;
        }

        .service-box p {
            padding: 0 15px 15px;
        }

        .gallery {
            padding: 60px 0;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        }

        .gallery h2 {
            text-align: center;
            color: #d32f2f;
            margin-bottom: 40px;
            font-size: 2.5em;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .gallery-grid img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 20px;
            transition: transform 0.3s ease;
        }

        .gallery-grid img:hover {
            transform: scale(1.05);
        }

        .testimonials {
            padding: 60px 0;
            background: #fff;
        }

        .testimonials h2 {
            text-align: center;
            color: #d32f2f;
            margin-bottom: 40px;
            font-size: 2.5em;
        }

        .testimonial {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 10px;
            margin: 20px auto;
            max-width: 600px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .testimonial p {
            font-style: italic;
        }

        .testimonial cite {
            display: block;
            text-align: right;
            margin-top: 10px;
            font-weight: bold;
            color: #d32f2f;
        }

        .contact {
            padding: 60px 0;
            background: #333;
            color: #fff;
            text-align: center;
        }

        .contact h2 {
            margin-bottom: 20px;
            font-size: 2.5em;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
            max-width: 500px;
            margin: 20px auto;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 15px;
            border: none;
            border-radius: 5px;
            font-size: 1em;
        }

        .contact-form button {
            padding: 15px;
            background: #d32f2f;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1em;
            transition: background 0.3s ease;
        }

        .contact-form button:hover {
            background: #b71c1c;
        }

        .site-footer {
            background: #222;
            color: #fff;
            text-align: center;
            padding: 30px 0;
            margin-top: 0;
        }

        .site-footer a {
            color: #d32f2f;
            text-decoration: none;
        }

        .site-footer a:hover {
            text-decoration: underline;
        }

        .site-footer .footer-links {
            margin-bottom: 20px;
        }

        .site-footer .footer-links a {
            margin: 0 15px;
        }

        .site-footer .social-media {
            margin-top: 20px;
        }

        .site-footer .social-media a {
            margin: 0 10px;
            font-size: 1.5em;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h2 {
                font-size: 2em;
            }
            .services-preview .grid {
                flex-direction: column;
                align-items: center;
            }
            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
        }

        /* Animation for fade-in */
        .fade-in {
            animation: fadeIn 1s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ===== Service Toggle (Open / Close) ===== */
        .toggle-btn {
            background: #d32f2f;
            color: #fff;
            border: none;
            padding: 10px 22px;
            border-radius: 25px;
            cursor: pointer;
            margin: 15px;
            font-weight: bold;
            font-size: 0.95em;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background 0.3s ease, transform 0.2s ease;
        }

        .toggle-btn:hover {
            background: #b71c1c;
        }

        .toggle-btn:active {
            transform: scale(0.95);
        }

        .service-details {
            max-height: 0;
            overflow: hidden;
            padding: 0 15px;
            transition: max-height 0.4s ease;
            background: #fafafa;
            border-top: 1px solid #eee;
        }

        .service-details.open {
            padding: 15px;
        }

        .service-details ul {
            list-style: none;
            padding: 0;
        }

        .service-details li {
            margin-bottom: 8px;
            font-size: 0.95em;
        }

        .service-details li::before {
            content: "✔";
            color: #d32f2f;
            margin-right: 8px;
        }
    </style>
</head>
<body>
    <header class="site-header">
        <div class="container">
            <h1>STUDIO 13 FAMILY SALON</h1>
            <nav>
                <a href="#about">About</a>
                <a href="#services">Services</a>
                <a href="#gallery">Gallery</a>
                <a href="#testimonials">Testimonials</a>
                <a href="#contact">Contact</a>
            </nav>
        </div>
    </header>

    <section class="hero fade-in">
        <div class="container">
            <h2>Stylish Haircuts for the Whole Family</h2>
            <p>Experience top-notch beauty services in a welcoming environment for everyone.</p>
            <a href="#contact" class="btn">Book Now</a>
        </div>
    </section>

    <section id="about" class="about fade-in">
        <div class="container">
            <h2>About Us</h2>
            <p>At STUDIO 13 FAMILY SALON, we specialize in providing high-quality hair and beauty services for the entire family. Our skilled stylists create personalized looks that make you feel confident and beautiful.</p>
        </div>
    </section>

    <section id="services" class="services-preview fade-in">
        <div class="container">
            <h2>Our Services</h2>
            <div class="grid">
                <div class="service-box">
                    <img src="https://via.placeholder.com/300x200/ffcc80/000000?text=Haircuts" alt="Haircuts">
                    <h3>Haircuts</h3>
                    <p>Professional cuts tailored to your style and preferences.</p>
                    <button class="toggle-btn" onclick="toggleDetails(this)">Learn More</button>
                    <div class="service-details">
                        <ul>
                            <li>Men's cuts and trims</li>
                            <li>Women's layered cuts</li>
                            <li>Kids' fun and safe styles</li>
                        </ul>
                    </div>
                </div>
                <div class="service-box">
                    <img src="https://via.placeholder.com/300x200/ffb74d/000000?text=Coloring" alt="Coloring">
                    <h3>Coloring</h3>
                    <p>Vibrant colors and highlights to enhance your look.</p>
                    <button class="toggle-btn" onclick="toggleDetails(this)">Learn More</button>
                    <div class="service-details">
                        <ul>
                            <li>Full color treatments</li>
                            <li>Highlights and balayage</li>
                            <li>Color correction services</li>
                        </ul>
                    </div>
                </div>
                <div class="service-box">
                    <img src="https://via.placeholder.com/300x200/ff8a65/000000?text=Styling" alt="Styling">
                    <h3>Styling</h3>
                    <p>Expert styling for special occasions and everyday elegance.</p>
                    <button class="toggle-btn" onclick="toggleDetails(this)">Learn More</button>
                    <div class="service-details">
                        <ul>
                            <li>Updos and bridal styles</li>
                            <li>Blowouts and curls</li>
                            <li>Braiding and accessories</li>
                        </ul>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <section id="gallery" class="gallery fade-in">
        <div class="container">
            <h2>Gallery</h2>
            <div class="gallery-grid">
                <img src="https://via.placeholder.com/200x150/ffcc80/000000?text=Haircut+1" alt="Haircut 1">
                <img src="https://via.placeholder.com/200x150/ffb74d/000000?text=Haircut+2" alt="Haircut 2">
                <img src="https://via.placeholder.com/200x150/ff8a65/000000?text=Haircut+3" alt="Haircut 3">
                <img src="https://via.placeholder.com/200x150/d32f2f/ffffff?text=Style+4" alt="Style 4">
                <img src="https://via.placeholder.com/200x150/4caf50/ffffff?text=Style+5" alt="Style 5">
                <img src="https://via.placeholder.com/200x150/2196f3/ffffff?text=Style+6" alt="Style 6">
            </div>
        </div>
    </section>

    <section id="testimonials" class="testimonials fade-in">
        <div class="container">
            <h2>What Our Customers Say</h2>
            <div class="testimonial">
                <p>"The best haircut I've ever had! The stylists are amazing."</p>
                <cite>- Jane Doe</cite>
            </div>
            <div class="testimonial">
                <p>"Great service for the whole family. Highly recommend!"</p>
                <cite>- John Smith</cite>
            </div>
        </div>
    </section>

    <section id="contact" class="contact fade-in">
        <div class="container">
            <h2>Contact Us</h2>
            <form class="contact-form">
                <input type="text" placeholder="Your Name" required>
                <input type="email" placeholder="Your Email" required>
                <textarea placeholder="Your Message" rows="5" required></textarea>
                <button type="submit">Send Message</button>
            </form>
        </div>
    </section>

    <footer class="site-footer">
        <div class="container">
            <div class="footer-links">
                <a href="index.html">Home</a>
                <a href="about.html">About</a>
                <a href="services.html">Services</a>
                <a href="contact.html">Contact</a>
            </div>

            <div class="social-media">
                <a href="https://www.instagram.com/thesalonstudio13/" 
                   target="_blank" 
                   aria-label="Instagram">
                    <i class="fab fa-instagram"></i>
                </a>
            </div>

            <p>&copy; 2023 STUDIO 13 FAMILY SALON. All Rights Reserved.</p>
        </div>
    </footer>

    <script>
        function toggleDetails(button) {
            const details = button.nextElementSibling;
            const isOpen = details.classList.contains("open");

            // Close all open service details
            document.querySelectorAll(".service-details").forEach(item => {
                item.classList.remove("open");
                item.style.maxHeight = null;
            });

            document.querySelectorAll(".toggle-btn").forEach(btn => {
                btn.textContent = "Learn More";
            });

            // Open selected service
            if (!isOpen) {
                details.classList.add("open");
                details.style.maxHeight = details.scrollHeight + "px";
                button.textContent = "Close";
            }
        }
    </script>
</body>
</html>
