/* --- LÜKS & MİNİMALİST TEMA --- */
:root {
    --dark-bg: #0a0a0a;      /* Derin, asil siyah */
    --gold: #c5a059;         /* Premium altın tonu */
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    background-color: var(--dark-bg);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- 1. GİRİŞ (HERO) BÖLÜMÜ --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('arkaplan.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 2s ease;
}

.date-label {
    letter-spacing: 5px;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.names {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    font-style: italic;
    font-weight: 600;
    margin-bottom: 10px;
}

/* İsimlerin altındaki o şık ince çizgi */
.hero-content::after {
    content: '';
    width: 180px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 15px 0;
    opacity: 0.7;
}

#modern-counter {
    font-size: 1.1rem;
    letter-spacing: 3px;
    font-weight: 300;
    margin-top: 5px;
}

#modern-counter span {
    color: var(--gold);
    font-weight: 600;
}

/* --- 2. HİKAYE BÖLÜMÜ (MÜZİK & NOT) --- */
.story-section {
    padding: 120px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    background: #0d0d0d;
}

/* MÜZİK KARTU - HAREKETLİ VERSİYON */
.music-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    padding: 25px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    min-width: 420px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.music-card:hover {
    transform: translateY(-12px); /* Yukarı süzülme hareketi */
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.15);
}

#album-art {
    width: 110px;
    height: 110px;
    border-radius: 12px;
    object-fit: cover;
    transition: 0.5s;
}

/* Müzik çalarken dönecek olan class */
.rotating {
    animation: rotatePlak 10s linear infinite;
    border-radius: 50% !important;
}

@keyframes rotatePlak {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.music-info h3 { font-size: 1.3rem; margin-bottom: 5px; font-weight: 600; }
.music-info p { color: var(--gold); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; }

#play-btn {
    margin-top: 12px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 7px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
}

#play-btn:hover {
    background: var(--gold);
    color: #000;
}

/* NOT KUTUSU */
.note-box {
    flex: 1;
    max-width: 550px;
}

.note-box p {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    color: #e5e5e5;
}

.sign {
    display: block;
    margin-top: 25px;
    color: var(--gold);
    text-align: right;
    font-size: 1.2rem;
    font-weight: 600;
}

/* --- 3. GALERİ (MODERN MASONRY) --- */
.gallery-section {
    padding: 100px 5%;
    text-align: center;
    background: #0a0a0a;
}

.gallery-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 50px;
}

.masonry-gallery {
    columns: 3 300px;
    column-gap: 20px;
}

.photo {
    margin-bottom: 20px;
    break-inside: avoid;
    border-radius: 15px;
    overflow: hidden;
}

.photo img {
    width: 100%;
    display: block;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.9);
}

.photo img:hover {
    transform: scale(1.06);
    filter: brightness(1.1);
}

/* --- ANİMASYONLAR --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 968px) {
    .story-section {
        flex-direction: column;
        padding: 80px 20px;
        gap: 50px;
    }
    .music-card {
        min-width: 100%;
        flex-direction: column;
        text-align: center;
    }
    .note-box { text-align: center; }
    .names { font-size: 2.8rem; }
}

/* Fotoğrafların üstüne gelince lüks bir büyüme efekti */
.photo img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.photo img:hover {
    transform: scale(1.05); /* Çok hafif büyüme */
    filter: brightness(1.1); /* Hafif aydınlanma */
}

/* Sayfa geçişlerini yumuşat */
html {
    scroll-behavior: smooth;
}

/* Buton için küçük bir lüks parıltı */
#play-btn {
    box-shadow: 0 0 5px rgba(197, 160, 89, 0.2);
}

#play-btn:hover {
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
    transform: scale(1.05);
}
