.wedding-gallery-container {
            min-height: 100vh;
            
            padding: 40px 20px;
            font-family: 'Georgia', serif;
        }

        .moments-header-text {
            text-align: center;
            font-size: clamp(1.8rem, 4vw, 3.2rem);
            color: #d4850c;
            margin-bottom: 60px;
            font-weight: 400;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            letter-spacing: 1px;
        }

        .photo-showcase-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .wedding-photo-frame {
            position: relative;
            width: 280px;
            height: 280px;
            border-radius: 15px;
            overflow: hidden;
            border: 4px solid #d4850c;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .wedding-photo-frame:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            border-color: #f4a261;
        }

        .couple-moment-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.6s ease;
        }

        .wedding-photo-frame:hover .couple-moment-image {
            transform: scale(1.15) rotate(2deg);
            filter: brightness(1.1) saturate(1.2);
        }

        .photo-overlay-effect {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(244, 162, 97, 0.3), rgba(231, 111, 81, 0.3));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .wedding-photo-frame:hover .photo-overlay-effect {
            opacity: 1;
        }

        .floating-hearts {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .wedding-photo-frame:hover .floating-hearts {
            opacity: 1;
            animation: heartFloat 2s ease-in-out infinite;
        }

        @keyframes heartFloat {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -60%) scale(1.1); }
        }

        .heart-icon {
            font-size: 24px;
            color: rgba(255, 255, 255, 0.8);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .wedding-gallery-container {
                padding: 30px 15px;
            }
            
            .photo-showcase-grid {
                gap: 20px;
            }
            
            .wedding-photo-frame {
                width: 220px;
                height: 220px;
            }
        }

        @media (max-width: 480px) {
            .wedding-gallery-container {
                padding: 20px 10px;
            }
            
            .photo-showcase-grid {
                flex-direction: column;
                gap: 25px;
            }
            
            .wedding-photo-frame {
                width: 250px;
                height: 250px;
            }
        }

        /* Animation for page load */
        .wedding-photo-frame {
            animation: slideInUp 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(50px);
        }

        .wedding-photo-frame:nth-child(1) { animation-delay: 0.1s; }
        .wedding-photo-frame:nth-child(2) { animation-delay: 0.3s; }
        .wedding-photo-frame:nth-child(3) { animation-delay: 0.5s; }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Subtle pulsing effect */
        @keyframes gentlePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        .wedding-photo-frame.pulse-animation {
            animation: gentlePulse 3s ease-in-out infinite;
        }