/* style.css */

:root {
    --primary-gold: #D4AF37; /* Altın Sarısı */
    --dark-gold: #B8860B;    /* Daha koyu altın */
    --black: #000000;
    --dark-grey: #1a1a1a;
    --light-grey: #f0f0f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif; /* Google Fonts'tan eklemeyi unutmayın */
    color: var(--light-grey);
    background-color: var(--black);
    line-height: 1.6;
    overflow-x: hidden; /* Animasyonlar nedeniyle yatay kaydırmayı engeller */
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2; /* En arkada olması için */
}

.video-background iframe {
    width: 100vw;
    height: 100vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    pointer-events: none; /* Videoya tıklanmasını engeller */
}

/* Overlay for video */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Karartma efekti */
    z-index: -1; /* Video ile içerik arasında */
}

/* Tüm bölümler için ortak stiller */
section {
    padding: 6rem 2rem;
    margin-bottom: 2rem;
    background-color: var(--dark-grey);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0; /* Başlangıçta animasyon için gizli */
    transform: translateY(50px); /* Başlangıçta animasyon için biraz aşağıda */
}
section.visible {
    opacity: 1;
    transform: translateY(0);
}

section h2 {
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
    position: relative;
}
section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--primary-gold);
    border-radius: 2px;
}