/* Gallery Section */
.gallery-section {
    background: #000;
    padding: 80px 20px;
    position: relative;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Gallery Heading */
.gallery-heading {
    font-family: "Anton", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.gallery-heading .highlight {
    color: #FF6B35;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 15px;
    margin-bottom: 60px;
}

/* Gallery Items */
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

/* Grid Layout - Specific Positioning */
.gallery-item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.gallery-item-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.gallery-item-3 {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

.gallery-item-4 {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 20px;
    }

    .gallery-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 200px);
        gap: 10px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 40px 15px;
    }

    .gallery-heading {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .gallery-grid {
        grid-template-rows: repeat(2, 150px);
        gap: 8px;
    }
}