 <style>
        :root {
            --primary: #d4af37;
            --secondary: #D4AF37;
            --light: #f8f9fa;
            --dark: #212529;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #f5f5f5;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section {
            padding: 60px 0;
        }
        
        /* Album Header */
        .album-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .album-header h1 {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .album-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Breadcrumb Navigation */
        .breadcrumb {
            padding: 20px 0;
            font-size: 0.9rem;
        }
        
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            color: var(--primary);
        }
        
        .breadcrumb span {
            margin: 0 8px;
            color: #999;
        }
        
        /* Photo Grid */
        .photo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .photo-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            aspect-ratio: 1;
            cursor: pointer;
        }
        
        .photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .photo-item:hover img {
            transform: scale(1.05);
        }
        
        .photo-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #00000059;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }
        
        .photo-item:hover .photo-overlay {
            opacity: 1;
        }
        
        .view-icon {
            color: white;
            font-size: 1.5rem;
        }
        
        /* Modal Viewer */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            text-align: center;
        }
        
        .modal-image {
            max-height: 80vh;
            max-width: 100%;
            border-radius: 5px;
        }
        
        .modal-caption {
            color: white;
            margin-top: 15px;
            font-size: 1.1rem;
        }
        
        .close-modal {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }
        
        .modal-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }
        
        .nav-button {
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .nav-button:hover {
            background: rgba(255,255,255,0.4);
        }
        
        /* Back to Album Button */
        .back-to-album {
            display: inline-block;
            margin-top: 30px;
            padding: 10px 25px;
            background: var(--primary);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .back-to-album:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .album-header h1 {
                font-size: 2rem;
            }
            
            .photo-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .modal-nav {
                display: none;
            }
        }
        
        @media (max-width: 576px) {
            .photo-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            
            .album-header h1 {
                font-size: 1.8rem;
            }
        }
    </style>