<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Rosy's Photography</title>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Source+Sans+3:wght@300;400;500&display=swap" rel="stylesheet">
    <style>
        :root {
            --cream: #faf8f5;
            --warm-white: #f5f2ed;
            --soft-brown: #8b7355;
            --deep-brown: #4a3f35;
            --accent-sage: #7d8c7a;
            --accent-terracotta: #c4967a;
            --text-dark: #3d3530;
            --text-light: #6b5e54;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--cream);
            color: var(--text-dark);
            line-height: 1.6;
        }

        /* Header */
        header {
            padding: 60px 20px 40px;
            text-align: center;
            background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
        }

        .logo {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 2.8rem;
            font-weight: 400;
            color: var(--deep-brown);
            letter-spacing: 0.02em;
            margin-bottom: 8px;
        }

        .tagline {
            font-size: 1.1rem;
            color: var(--text-light);
            font-weight: 300;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        /* Navigation */
        nav {
            display: flex;
            justify-content: center;
            gap: 40px;
            padding: 20px;
            background: var(--cream);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(139, 115, 85, 0.15);
        }

        nav a {
            color: var(--soft-brown);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 8px 4px;
            position: relative;
            transition: color 0.3s ease;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-terracotta);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--deep-brown);
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 70vh;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent-sage) 0%, var(--soft-brown) 100%);
            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" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
            background-size: 200px;
            opacity: 0.5;
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 1;
            padding: 20px;
        }

        .hero h1 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 3.5rem;
            font-weight: 400;
            margin-bottom: 20px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
        }

        .hero p {
            font-size: 1.2rem;
            font-weight: 300;
            opacity: 0.95;
            max-width: 500px;
            margin: 0 auto;
        }

        /* Section Styles */
        section {
            padding: 80px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 2.2rem;
            font-weight: 400;
            color: var(--deep-brown);
            margin-bottom: 15px;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1.05rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .divider {
            width: 60px;
            height: 2px;
            background: var(--accent-terracotta);
            margin: 20px auto 0;
        }

        /* Gallery Grid */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(74, 63, 53, 0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(74, 63, 53, 0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

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

        /* Placeholder styling */
        .placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--warm-white) 0%, #e8e4de 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--soft-brown);
        }

        .placeholder-icon {
            font-size: 3rem;
            margin-bottom: 10px;
            opacity: 0.5;
        }

        .placeholder-text {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .gallery-item .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 25px 20px;
            background: linear-gradient(transparent, rgba(58, 50, 43, 0.85));
            color: white;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .overlay {
            transform: translateY(0);
        }

        .overlay h3 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .overlay p {
            font-size: 0.85rem;
            opacity: 0.85;
        }

        /* Featured wide image */
        .gallery-item.wide {
            grid-column: span 2;
            aspect-ratio: 2/1;
        }

        @media (max-width: 700px) {
            .gallery-item.wide {
                grid-column: span 1;
                aspect-ratio: 4/3;
            }
        }

        /* About Section */
        .about {
            background: var(--warm-white);
        }

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

        .about-content p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--text-light);
        }

        /* Footer */
        footer {
            background: var(--deep-brown);
            color: rgba(255, 255, 255, 0.8);
            text-align: center;
            padding: 50px 20px;
        }

        footer .logo {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        footer p {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        footer a {
            color: var(--accent-terracotta);
            text-decoration: none;
        }

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

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(30, 25, 22, 0.95);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 4px;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 2rem;
            color: white;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .lightbox-close:hover {
            opacity: 1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .logo {
                font-size: 2rem;
            }

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

            nav {
                gap: 20px;
            }

            nav a {
                font-size: 0.85rem;
            }

            .gallery {
                grid-template-columns: 1fr;
            }

            section {
                padding: 60px 15px;
            }
        }
    </style>
</head>
<body>
    <header>
        <h1 class="logo">Rosy</h1>
        <p class="tagline">Photography</p>
    </header>

    <nav>
        <a href="#landscapes">Landscapes</a>
        <a href="#historic">Historic Sites</a>
        <a href="#about">About</a>
    </nav>

    <section class="hero">
        <div class="hero-content">
            <h1>Through My Lens</h1>
            <p>Capturing the quiet beauty of natural landscapes and the stories held within historic walls</p>
        </div>
    </section>

    <section id="landscapes">
        <div class="section-header">
            <h2>Landscapes</h2>
            <p>Moments of stillness in nature - mountains, valleys, and the golden hour light</p>
            <div class="divider"></div>
        </div>

        <div class="gallery">
            <div class="gallery-item wide">
                <div class="placeholder">
                    <span class="placeholder-icon">&#9968;</span>
                    <span class="placeholder-text">Your photo here</span>
                </div>
                <div class="overlay">
                    <h3>Featured Landscape</h3>
                    <p>Add your best shot here</p>
                </div>
            </div>
            <div class="gallery-item">
                <div class="placeholder">
                    <span class="placeholder-icon">&#127749;</span>
                    <span class="placeholder-text">Landscape 1</span>
                </div>
                <div class="overlay">
                    <h3>Title</h3>
                    <p>Location</p>
                </div>
            </div>
            <div class="gallery-item">
                <div class="placeholder">
                    <span class="placeholder-icon">&#127956;</span>
                    <span class="placeholder-text">Landscape 2</span>
                </div>
                <div class="overlay">
                    <h3>Title</h3>
                    <p>Location</p>
                </div>
            </div>
            <div class="gallery-item">
                <div class="placeholder">
                    <span class="placeholder-icon">&#127774;</span>
                    <span class="placeholder-text">Landscape 3</span>
                </div>
                <div class="overlay">
                    <h3>Title</h3>
                    <p>Location</p>
                </div>
            </div>
            <div class="gallery-item">
                <div class="placeholder">
                    <span class="placeholder-icon">&#127796;</span>
                    <span class="placeholder-text">Landscape 4</span>
                </div>
                <div class="overlay">
                    <h3>Title</h3>
                    <p>Location</p>
                </div>
            </div>
        </div>
    </section>

    <section id="historic" style="background: var(--warm-white);">
        <div class="section-header">
            <h2>Historic Sites</h2>
            <p>Ancient architecture and places where time stands still</p>
            <div class="divider"></div>
        </div>

        <div class="gallery">
            <div class="gallery-item">
                <div class="placeholder">
                    <span class="placeholder-icon">&#127983;</span>
                    <span class="placeholder-text">Historic 1</span>
                </div>
                <div class="overlay">
                    <h3>Title</h3>
                    <p>Location & Year</p>
                </div>
            </div>
            <div class="gallery-item">
                <div class="placeholder">
                    <span class="placeholder-icon">&#127984;</span>
                    <span class="placeholder-text">Historic 2</span>
                </div>
                <div class="overlay">
                    <h3>Title</h3>
                    <p>Location & Year</p>
                </div>
            </div>
            <div class="gallery-item wide">
                <div class="placeholder">
                    <span class="placeholder-icon">&#128508;</span>
                    <span class="placeholder-text">Featured historic site</span>
                </div>
                <div class="overlay">
                    <h3>Featured Historic Site</h3>
                    <p>Your panoramic shot here</p>
                </div>
            </div>
            <div class="gallery-item">
                <div class="placeholder">
                    <span class="placeholder-icon">&#9962;</span>
                    <span class="placeholder-text">Historic 3</span>
                </div>
                <div class="overlay">
                    <h3>Title</h3>
                    <p>Location & Year</p>
                </div>
            </div>
            <div class="gallery-item">
                <div class="placeholder">
                    <span class="placeholder-icon">&#127759;</span>
                    <span class="placeholder-text">Historic 4</span>
                </div>
                <div class="overlay">
                    <h3>Title</h3>
                    <p>Location & Year</p>
                </div>
            </div>
        </div>
    </section>

    <section id="about" class="about">
        <div class="section-header">
            <h2>About</h2>
            <div class="divider"></div>
        </div>
        <div class="about-content">
            <p>
                Welcome to my photography corner. I'm drawn to the serene beauty of natural landscapes
                and the timeless stories held within historic architecture. Each photograph is a moment
                of connection - with the land, with history, and with the quiet magic of light.
            </p>
            <p style="margin-top: 20px;">
                <em>Feel free to reach out if you'd like to connect.</em>
            </p>
        </div>
    </section>

    <footer>
        <p class="logo">Rosy</p>
        <p>&copy; 2024 &middot; All photographs are my own</p>
        <p style="margin-top: 15px;"><a href="/">Back to Home</a></p>
    </footer>

    <!-- Lightbox for full-size images -->
    <div class="lightbox" id="lightbox">
        <span class="lightbox-close" onclick="closeLightbox()">&times;</span>
        <img src="" alt="Full size" id="lightbox-img">
    </div>

    <script>
        // Lightbox functionality (ready for when you add real images)
        function openLightbox(src) {
            document.getElementById('lightbox-img').src = src;
            document.getElementById('lightbox').classList.add('active');
            document.body.style.overflow = 'hidden';
        }

        function closeLightbox() {
            document.getElementById('lightbox').classList.remove('active');
            document.body.style.overflow = '';
        }

        document.getElementById('lightbox').addEventListener('click', function(e) {
            if (e.target === this) closeLightbox();
        });

        document.addEventListener('keydown', function(e) {
            if (e.key === 'Escape') closeLightbox();
        });

        // When you add real images, uncomment this:
        // document.querySelectorAll('.gallery-item img').forEach(img => {
        //     img.addEventListener('click', () => openLightbox(img.src));
        // });
    </script>
</body>
</html>
