/* Event Gallery Page Specific Styles */

.gallery-main {
    background: white;
}

.gallery-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.gallery-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.gallery-hero .lead {
    font-size: 1.3rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Gallery Stats */
.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 30px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery Filters */
.gallery-filters {
    padding: 60px 0;
    background: #f8f9fa;
}

.filter-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-group label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.filter-group select {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    background: white;
    color: #666;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.filter-group select:hover {
    border-color: #667eea;
}

/* Gallery Grid */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

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

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

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.item-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.item-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.lighting-type {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}

/* Gallery Grid Section */
.gallery-grid-section {
    padding: 80px 0;
    background: white;
}

.gallery-grid-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.gallery-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.gallery-tag {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Featured Gallery Section */
.featured-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
}

.featured-events {
    margin-top: 50px;
}

.featured-event {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.event-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.event-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.event-image-container:hover .event-overlay {
    transform: translateY(0);
}

.event-details h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.event-details p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.event-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.event-description {
    padding: 20px 0;
}

.event-description p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.lighting-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.lighting-details h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.lighting-details ul {
    list-style: none;
    padding: 0;
}

.lighting-details li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lighting-details li::before {
    content: '💡';
    font-size: 1rem;
}

.professional-note {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-top: 25px;
}

.professional-note p {
    color: white;
    margin: 0;
    line-height: 1.6;
}

.professional-note strong {
    color: rgba(255,255,255,0.9);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.featured-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.featured-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.featured-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Gallery Categories */
.gallery-categories {
    padding: 80px 0;
    background: white;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-info {
    padding: 25px;
}

.category-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.category-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-count {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}


/* Load more */

.load-more {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
}

.load-more .btn-secondary {
    background: #6c757d;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more .btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(108, 117, 125, 0.3);
}

/* Section intro */

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.section-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

/* Stat item */

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

/* Professional recommendation */

.professional-recommendation {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 5px solid #667eea;
    margin-top: 40px;
}

.professional-recommendation h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.professional-recommendation p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.1rem;
}


/* Lighting Techniques */
.lighting-techniques {
    padding: 80px 0;
    background: #f8f9fa;
}

.lighting-techniques h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

.technique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.technique-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.technique-card:hover {
    transform: translateY(-5px);
}

.technique-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.technique-content {
    padding: 25px;
}

.technique-content h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.technique-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Venue Showcases */
.venue-showcases {
    padding: 80px 0;
    background: white;
}

.venue-showcases h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.showcase-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.showcase-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
}

.showcase-details {
    padding: 25px;
}

.showcase-details h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.showcase-details p {
    color: #666;
    line-height: 1.6;
}

/* Submission Guidelines */
.submission-guidelines {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.submission-guidelines h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

.guidelines-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.guidelines-list {
    list-style: none;
    padding: 0;
}

.guideline-item {
    padding: 15px 0;
    color: #666;
    line-height: 1.6;
    position: relative;
    padding-left: 30px;
    border-bottom: 1px solid #e9ecef;
}

.guideline-item:before {
    content: "📝";
    position: absolute;
    left: 0;
    top: 15px;
}

.guideline-item:last-child {
    border-bottom: none;
}

/* Techniques Grid */
.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.technique-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.technique-link {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.technique-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.3);
    text-decoration: none;
    color: white;
}

/* Venue Showcase */
.venue-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.venue-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

.venue-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.venue-highlight {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.venue-highlight:hover {
    transform: translateY(-5px);
}

.venue-info {
    padding: 30px;
}

.venue-info h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.venue-location {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.venue-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.venue-features li {
    padding: 5px 0;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.venue-features li:before {
    content: "✓";
    color: #38a169;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 5px;
}

.venue-link {
    background: linear-gradient(45deg, #38a169, #68d391);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.venue-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(56, 161, 105, 0.3);
    text-decoration: none;
    color: white;
}

/* Professional Insights */
.professional-insights {
    padding: 80px 0;
    background: #f8f9fa;
}

.professional-insights h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

.insights-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.insight-main {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.insight-main h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.key-principles {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.principle {
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    color: #666;
    line-height: 1.6;
    position: relative;
    padding-left: 40px;
}

.principle:before {
    content: counter(principle-counter);
    counter-increment: principle-counter;
    position: absolute;
    left: 0;
    top: 20px;
    background: #667eea;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.key-principles {
    counter-reset: principle-counter;
}

.principle:last-child {
    border-bottom: none;
}

.insight-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.professional-tip {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #f57c00;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.professional-tip h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.professional-tip p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Gallery Stats Detailed */
.gallery-stats-detailed {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.gallery-stats-detailed h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Professional Services */
.professional-services {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #4caf50;
    margin-top: 30px;
}

.professional-services h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.professional-services p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Submit Event */
.submit-event {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.submit-event h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.submit-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.submit-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.submit-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-hero h1 {
        font-size: 2.5rem;
    }
    
    .gallery-hero .lead {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .event-image-container img {
        height: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .featured-event {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .filter-controls {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-stats {
        gap: 30px;
    }
    
    .featured-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-hero {
        padding: 60px 0;
    }
    
    .gallery-hero h1 {
        font-size: 2rem;
    }
    
    .gallery-item {
        margin: 0 15px;
    }
    
    .gallery-overlay {
        padding: 20px 15px 15px;
    }
    
    .featured-image img {
        height: 250px;
    }
}
