/* Temel Reset ve Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0e0e0e;
  font-family: 'Inter', sans-serif;
  color: #f0f0f0;
}

/* Ana İçerik Kapsayıcı */
main {
  width: 100%;
  max-width: 1200px;
  padding: 32px 50px 0px 50px;
  text-align: center;
  margin: 0 auto;
}

/* Profil Bölümü */
.profile-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
}

.profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.profile-image {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 50%;
  border: 3px solid #1db954;
  margin: 0 auto 20px;
}

.profile-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  white-space: nowrap;
}

.profile-bio {
  font-size: 1.05rem;
  color: #cccccc;
  margin-bottom: 10px;
  margin-top: -10px;
  text-align: center;
  line-height: 1.5;
}

/* Sosyal Medya İkonları */
.link-list {
  display: flex;
  gap: 20px;
  margin-top: 0px;
  margin-bottom: 64px;
}

.link-list a {
  color: #f0f0f0;
  font-size: 24px;
  transition: color 0.3s ease;
}

.link-list a:hover {
  color: #1db954;
}

/* Responsive Ayarlar */
@media (max-width: 480px) {
  .profile-image {
    width: 120px;
    height: 120px;
  }
  
  .profile-name {
    font-size: 1.5rem;
  }
  
  .link-list {
    gap: 15px;
  }
  
  .link-list a {
    font-size: 20px;
  }
}

.embed-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.embed-box {
  background: #181818;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
  padding: 18px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 350px;
  margin: 0 auto;
}

.embed-title {
  color: #1db954;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.embed-box iframe {
  border: none;
  border-radius: 8px;
  width: 100%;
}

@media (max-width: 480px) {
  .embed-box {
    max-width: 100%;
    padding: 10px 4px 10px 4px;
  }
  .embed-section {
    gap: 12px;
  }
}

@media (max-width: 900px) {
  main {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    display: block;
    clear: both;
  }
  .youtube-row {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .embed-section {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
  }
  .embed-box {
    max-width: 420px;
    flex: 1 1 0;
  }
}

.showcase-section {
  margin-top: 48px;
  text-align: center;
}
.showcase-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.showcase-desc {
  color: #aaa;
  margin-bottom: 32px;
}
.showcase-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.showcase-card {
  background: #181818;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.15);
  padding: 24px 18px 18px 18px;
  max-width: 400px;
  min-width: 280px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s;
}
.showcase-card:hover {
  transform: translateY(-8px) scale(1.03);
}
.showcase-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.showcase-card.youtube .showcase-header i { color: #ff0000; }
.showcase-card.spotify .showcase-header i { color: #1db954; }
.showcase-info {
  margin-bottom: 12px;
  color: #f0f0f0;
  font-size: 1.05rem;
}
.showcase-card iframe {
  border-radius: 10px;
  width: 100%;
}

/* Müzik Ön İzlemeleri Bölümü */
.music-previews {
  padding: 0 2rem 8rem 2rem;
  background-color: var(--bg-color);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.music-previews h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  margin-top: 0;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.preview-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.preview-group {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.preview-group:hover {
  transform: translateY(-5px);
}

.preview-group h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.embed-placeholder {
  background-color: var(--bg-color);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  color: var(--text-color);
  opacity: 0.8;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .music-previews {
    margin-top: 20rem;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 8rem;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .music-previews h2 {
    text-align: center;
    width: 100%;
  }
}

.pond5-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #1db954;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  margin-top: 1rem;
  transition: background 0.2s;
}
.pond5-link:hover {
  background: #15913d;
}

.youtube-row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.music-link-btn {
  display: block;
  width: 100%;
  padding: 0.7rem 0;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #222;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.2px;
}
.music-link-btn:hover {
  background: #444;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 3px 12px 0 rgba(0,0,0,0.15);
}
.music-link-btn.youtube,
.music-link-btn.spotify,
.music-link-btn.softtone,
.music-link-btn.pond5 {
  background: #222;
  color: #fff;
}
.music-link-btn.youtube:hover,
.music-link-btn.spotify:hover,
.music-link-btn.softtone:hover,
.music-link-btn.pond5:hover {
  background: #444;
}

/* Video Portfolio Bölümü */
.video-portfolio {
  margin-top: 6rem;
  text-align: center;
  padding: 0 2rem;
}

.video-portfolio h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.video-portfolio p {
  color: #aaa;
  margin-bottom: 2rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.video-item {
  background: #181818;
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
  width: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.video-item:hover {
  transform: translateY(-5px);
}

.video-item h3 {
  color: #1db954;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.video-player-container {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  display: none;
}

.video-player-container.active {
  display: block;
}

.video-player-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-item iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  border: none;
  min-height: 400px;
}

.video-production-video-container {
  margin-top: 0;
}

.video-production-section {
  margin-top: 0;
  margin-bottom: 56px;
}
.video-production-section .section-title {
  text-align: center;
  margin-bottom: 28px;
  font-size: 2.4rem;
  font-weight: 800;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    max-width: 800px;
    padding: 0 1rem;
  }
  
  .video-item {
    padding: 1rem;
  }
  
  .video-item iframe {
    min-height: 300px;
  }
}

/* Out Now Bölümü */
.out-now-section {
  margin-top: 3rem;
  text-align: center;
  padding: 0 2rem;
  width: 100%;
  max-width: 800px; /* Daha dar bir genişlik */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}

.out-now-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: #f0f0f0;
}

.out-now-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

/* Responsive Ayarlar */
@media (max-width: 768px) {
  .out-now-section {
    padding: 0 1rem;
    margin-bottom: 4rem;
  }
}

/* Footer Ayarları */
footer {
  width: 100%;
  text-align: center;
  padding: 4rem 0;
  margin-top: 6rem;
  color: #aaa;
  font-size: 0.9rem;
}

footer p {
  margin: 0;
}

.section-title {
  text-align: center;
}