        body { 
            margin: 0; 
            font-family: 'Inter', sans-serif; 
            background: #fff; 
            color: #000; 
        }
        
        header {
            position: fixed; 
            top: 0; 
            width: 100%;
         background: rgb(255, 255, 255);
background: rgba(255, 255, 255, 0.98);
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            padding: 20px 40px; 
            box-sizing: border-box;
            border-bottom: 1px solid #f2f2f2; 
            z-index: 1000;
        }
        
        .logo { 
            font-family: 'Bodoni Moda', serif; 
            font-size: 28px; 
            font-weight: 900; 
            letter-spacing: 2px; 
            text-decoration: none; 
            color: #000; 
            text-transform: uppercase; 
        }
        
        nav a { 
            color: #000; 
            text-decoration: none; 
            font-size: 10px; 
            letter-spacing: 2px; 
            text-transform: uppercase; 
            font-weight: 600;
            transition: opacity 0.3s;
        }
        
        nav a:hover {
            opacity: 0.6;
        }
        
        .gallery-container { 
            padding: 140px 20px 60px; 
            max-width: 1400px; 
            margin: 0 auto; 
        }
        
        .album-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 38px; 
            font-weight: 300;
            text-transform: uppercase; 
            letter-spacing: 5px;
            margin: 0 0 15px 0;
        }
        
        .event-info {
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #666;
            line-height: 2;
        }
        
        .photo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 20px;
        }
        
        .photo-item {
            overflow: hidden;
            background: #f9f9f9;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .photo-item:hover {
            transform: scale(1.02);
        }
        
        .photo-item img {
            width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
        }
        
        .no-images {
            text-align: center;
            padding: 60px 20px;
            color: #999;
            font-size: 14px;
            letter-spacing: 2px;
        }
        
        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox.active {
            display: flex;
        }
        
        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }
        
        .lightbox-close {
            position: absolute;
            top: 30px;
            right: 40px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            font-weight: 300;
            transition: opacity 0.3s;
        }
        
        .lightbox-close:hover {
            opacity: 0.6;
        }
        
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 50px;
            cursor: pointer;
            padding: 20px;
            user-select: none;
            transition: opacity 0.3s;
        }
        
        .lightbox-nav:hover {
            opacity: 0.6;
        }
        
        .lightbox-prev {
            left: 20px;
        }
        
        .lightbox-next {
            right: 20px;
        }
        
        footer { 
            padding: 60px 40px; 
            text-align: center; 
            border-top: 1px solid #f2f2f2; 
            margin-top: 40px; 
        }
        
        @media (max-width: 768px) {
            .photo-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            h1 {
                font-size: 28px;
            }
            
            .lightbox-nav {
                font-size: 30px;
                padding: 10px;
            }
        }