/* =====================================================
   ARALİS GLOBAL – MODERN MEDYA GALERİSİ (NAVY & ORANGE)
===================================================== */

.gallery-content {
    background: #000b1a; /* Derin uzay laciverti */
    padding-bottom: 120px;
    min-height: 100vh;
}

/* --- HERO ALANI --- */
.gallery-hero {
    padding: 140px 0 80px;
    text-align: center;
}

.gallery-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 15px 0;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(90deg, #FF8C3E, #ffb380);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- GALERİ IZGARASI --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
}

/* --- KART TASARIMI --- */
.gallery-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    cursor: pointer;
}

.media-box {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #000;
}

.media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    opacity: 0.9;
}

/* Karartma Katmanı */
.media-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 11, 26, 0.8), transparent);
    z-index: 1;
    transition: 0.3s;
}

/* --- PLAY & ZOOM BUTONLARI --- */
.play-button, .zoom-icon {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 70px;
    height: 70px;
    background: var(--aralis-orange, #FF8C3E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transform: scale(0.5) rotate(-45deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
    box-shadow: 0 10px 30px rgba(255, 140, 62, 0.4);
}

.zoom-icon { 
    background: #fff; 
    color: #000b1a; 
}

/* Play butonu için nabız (pulse) efekti */
.play-button::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #FF8C3E;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* --- HOVER EFEKTLERİ --- */
.gallery-item:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 140, 62, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover .media-box img { 
    transform: scale(1.15); 
    opacity: 0.7;
}

.gallery-item:hover .media-box::before {
    background: rgba(0, 11, 26, 0.4);
}

.gallery-item:hover .play-button, 
.gallery-item:hover .zoom-icon { 
    opacity: 1; 
    transform: scale(1) rotate(0deg); 
}

/* --- ALT BİLGİ ALANI --- */
.gallery-info {
    padding: 25px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.01);
}

.media-type {
    font-size: 0.7rem;
    font-weight: 800;
    color: #FF8C3E;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
}

.media-type i {
    font-size: 0.9rem;
}

.gallery-info h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    transition: 0.3s;
}

.gallery-item:hover .gallery-info h3 {
    color: #FF8C3E;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-hero h1 { font-size: 2.2rem; }
    .media-box { height: 220px; }
}