/* Müzik Bölümü */
.music {
    padding: 6rem 5%;
    background-color: var(--bg-secondary);
}

.music-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: var(--font-size-3xl);
    margin-bottom: 2rem;
}

.music .container {
    max-width: 1200px;
    margin: 0 auto;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.album-card {
    background: var(--card-bg);
    border-radius: 1rem;
    box-shadow: 0 4px 12px var(--shadow-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.album-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: none;
    display: block;
}

.album-card .album-info {
    padding: 1rem;
    text-align: center;
}

.album-card .album-info h3 {
    font-family: var(--font-heading);
    font-size: var(--font-size-md);
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.album-card .album-info p {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: 0;
}

.album-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 24px var(--shadow-color);
}

.spotify-iframe {
    margin: 20rem 0 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    border-radius: 12px;
    background-color: var(--bg-primary);
}

.spotify-iframe iframe {
    width: calc(33.333% - 1.5rem);
    height: 800px;
    border: none;
    border-radius: 10px;
}

/* Responsive Tasarım */
@media screen and (max-width: 1200px) {
    .spotify-iframe iframe {
        width: calc(50% - 1.5rem);
        height: 600px;
    }
}

@media screen and (max-width: 768px) {
    .music {
        padding: 4rem 5%;
    }

    .music-title {
        font-size: var(--font-size-2xl);
    }

    .album-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }

    .spotify-iframe {
        margin: 10rem 0 0 0;
        padding: 0 1rem;
    }

    .spotify-iframe iframe {
        width: 100%;
        height: 500px;
        padding: 0 1rem;
    }
}

@media screen and (max-width: 480px) {
    .music {
        padding: 3rem 5%;
    }

    .music-title {
        font-size: var(--font-size-xl);
    }

    .album-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .spotify-iframe iframe {
        height: 400px;
        padding: 0 1rem;
    }
} 

/* Video Bölümü Stilleri */
.video-section {
    padding: 4rem 0;
    background-color: var(--bg-secondary);
}

.video-title {
    text-align: center;
    margin-bottom: 2rem;
}

.youtube-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.youtube-logo img {
    width: 120px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.youtube-logo img:hover {
    opacity: 1;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media screen and (max-width: 1200px) {
    .video-container {
        max-width: 960px;
        margin: 0 2rem;
        width: calc(100% - 4rem);
    }
}

@media screen and (max-width: 992px) {
    .video-container {
        max-width: 720px;
        aspect-ratio: 1/1;
    }
}

@media screen and (max-width: 768px) {
    .video-section {
        padding: 3rem 0;
    }

    .video-container {
        aspect-ratio: 1/1;
        max-width: 540px;
        margin: 0 1.5rem;
        width: calc(100% - 3rem);
    }
}

@media screen and (max-width: 576px) {
    .video-section {
        padding: 2rem 0;
    }

    .video-container {
        aspect-ratio: 1/1;
        max-width: 100%;
        margin: 0 1rem;
        width: calc(100% - 2rem);
    }

    .youtube-logo img {
        width: 100px;
    }
}

@media screen and (max-width: 480px) {
    .video-container {
        aspect-ratio: 1/1;
        margin: 0 1rem;
        width: calc(100% - 2rem);
    }
} 