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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a4d3a 0%, #2d6b4f 50%, #1a4d3a 100%);
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;700&display=swap');

/* Header Styles */
header {
    background: white;
    padding: 3rem 0 2rem 0;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

header .logo {
    height: 80px;
    width: auto;
    margin: 0;
    display: block;
    margin: 0 auto;
}

/* Main Content */
main {
    padding: 3rem 0;
}

.intro {
    text-align: center;
    margin-bottom: 3rem;
}

.intro h2 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.intro p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #e0e0e0;
}

/* Photo Gallery */
.gallery {
    margin-bottom: 3rem;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
}

.photo-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
}

.photo-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 15px 20px 5px 20px;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 0 12px 12px;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-title {
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 5px;
}

/* Loading and Error States */
.loading, .error {
    text-align: center;
    padding: 2rem;
    font-size: 1.2rem;
}

.loading {
    color: #d4af37;
}

.error {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    display: block;
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #d4af37;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffffff;
}

.caption {
    display: none;
}

.nav-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.nav-btn {
    background: rgba(212, 175, 55, 0.8);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: rgba(212, 175, 55, 1);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 2rem 0;
    border-top: 2px solid #d4af37;
    margin-top: 3rem;
}

footer p {
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }
    
    .intro h2 {
        font-size: 2rem;
    }
    
    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .photo-item img {
        height: 200px;
    }
    
    .nav-buttons {
        padding: 0 10px;
    }
    
    .nav-btn {
        padding: 10px 15px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 70%;
    }
}