/* Gallery Page Styles */

/* ========================================
   Page Header
   ======================================== */

.page-header {
    padding: 150px 20px 80px;
    text-align: center;
    position: relative;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
}

.page-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.85;
}

/* ========================================
   Gallery Section
   ======================================== */

.gallery-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(250, 235, 215, 0.3));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    overflow: hidden;
}

.gallery-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.gallery-link:hover {
    transform: translateY(-5px);
}

.gallery-link:hover .gallery-info h3 {
    color: var(--accent-orange);
}

.gallery-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    transition: var(--transition);
}

.gallery-item:hover .placeholder-image {
    transform: scale(1.1);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

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

.gallery-info h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-blue);
}

.gallery-info p {
    margin: 0;
}

.video-container {
    padding: 3rem;
    text-align: center;
}

.video-placeholder {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
    height: 400px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.video-placeholder i {
    font-size: 6rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.video-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.demo-video {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 20px 60px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
