/* Koyu ve Kırmızı Tema Değişkenleri */
:root {
  --primary-color: #ff003c;
  --secondary-color: #ff5e62;
  --dark-bg: #181818;
  --darker-bg: #121212;
  --gray-text: #cccccc;
  --transition: 0.2s cubic-bezier(0.4,0,0.2,1);
}

/* Base Styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--dark-bg);
  color: var(--gray-text);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: var(--gray-text);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Navigation */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--darker-bg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.7);
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

#navbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  height: 48px;
}

.logo-img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  background: none !important;
}

@media (max-width: 768px) {
  .logo {
    height: 38px;
  }
  .logo-img {
    height: 32px;
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 32px;
  }
  .logo-img {
    height: 26px;
    max-width: 90px;
  }
}

.nav-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
}

.nav-links li {
  margin-left: 30px;
}

.nav-link {
  position: relative;
  color: var(--primary-color);
  padding-bottom: 6px;
  transition: color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

/* Sections */
.section {
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  color: var(--primary-color);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* Home Section */
#home {
  background-color: var(--darker-bg);
  position: relative;
  overflow: hidden;
}

#home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(138, 43, 226, 0.2), transparent 70%);
  pointer-events: none;
}

.hero {
  text-align: center;
}

.band-name {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: 10px;
  margin-bottom: 30px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255, 64, 80, 0.3);
}

.band-name-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.band-name-img img {
  width: 340px;
  max-width: 80vw;
  filter:
    drop-shadow(0 0 8px #ff003c9a)
    drop-shadow(0 0 16px #ff003c9a)
    drop-shadow(0 0 32px #ff003c9a)
    brightness(0.25)
    saturate(100%)
    invert(14%) sepia(99%) saturate(7492%) hue-rotate(345deg) brightness(101%) contrast(119%);
  transition: filter 0.3s;
}

@media (max-width: 600px) {
  .band-name-img img {
    width: 200px;
  }
}

.band-image {
  margin: 30px 0;
  size: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.band-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-text);
}

/* Music Section */
#music {
  background-color: var(--dark-bg);
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel {
  width: 100%;
  max-width: 900px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.25s cubic-bezier(0.7,0,0.3,1);
  will-change: transform;
}

.carousel-item {
  min-width: 280px;
  max-width: 300px;
  flex: 0 0 33.3333%;
  padding: 0 10px;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .carousel-item {
    min-width: 220px;
    max-width: 260px;
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .carousel-item {
    min-width: 90vw;
    max-width: 95vw;
    flex: 0 0 100%;
    padding: 0 5px;
  }
  .carousel {
    max-width: 100vw;
  }
}

.carousel-button {
  background: rgba(255, 64, 87, 0.2);
  color: var(--light-text);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  position: absolute;
  z-index: 10;
}

.carousel-button.prev {
  left: 0;
}

.carousel-button.next {
  right: 0;
}

.carousel-button:hover {
  background: var(--primary-color);
}

.song-card {
  background-color: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.song-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.song-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.song-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.song-card:hover .song-image img {
  transform: scale(1.05);
}

.song-title {
  padding: 15px;
  font-size: 18px;
  text-align: center;
}

.song-links {
  display: flex;
  justify-content: space-around;
  padding: 0 15px 15px;
}

.platform-link {
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}

.platform-link.youtube {
  background-color: #ff0000;
}

.platform-link.spotify {
  background-color: #1db954;
}

.platform-link:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Social Section */
#social {
  background-color: var(--darker-bg);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  transition: var(--transition);
  width: 150px;
  height: 150px;
  justify-content: center;
}

.social-link i {
  font-size: 40px;
  margin-bottom: 10px;
  transition: var(--transition);
}

.social-link span {
  font-size: 16px;
  font-weight: 500;
}

.social-link:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-link:nth-child(1) i {
  color: #e1306c;
}
.social-link:nth-child(2) i {
  color: #4267b2;
}
.social-link:nth-child(3) i {
  color: #1da1f2;
}
.social-link:nth-child(4) i {
  color: #ff0000;
}
.social-link:nth-child(5) i {
  color: #1db954;
}
.social-link:nth-child(6) i {
  color: #fa243c;
}

/* Contact Section */
#contact {
  background-color: var(--dark-bg);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.contact-item i {
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 64, 87, 0.1);
  border-radius: 50%;
}

.contact-form {
  flex: 2;
  min-width: 300px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: var(--light-text);
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.1);
}

.submit-btn {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: #181818;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 64, 87, 0.3);
}

/* Footer */
footer {
  background: var(--darker-bg);
  color: var(--gray-text);
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid #222;
}

/* Band Members Section */
#members {
  background-color: var(--dark-bg);
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  justify-items: center;
}

.members-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.member-card {
  background: linear-gradient(135deg, rgba(255,64,87,0.10) 0%, rgba(138,43,226,0.10) 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 270px;
  min-width: 220px;
  max-width: 100%;
  padding: 28px 20px 22px 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.member-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 12px 32px rgba(255, 64, 87, 0.18);
}

.member-image {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px rgba(138,43,226,0.13);
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.member-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
  text-align: center;
}

.member-role {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
  text-align: center;
}

.member-desc {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
  text-align: center;
}

/* Responsive tweaks for members */
@media (max-width: 768px) {
  .members-grid {
    gap: 24px;
  }
  .member-card {
    padding: 22px 10px;
    max-width: 95vw;
  }
  .member-image {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 576px) {
  .members-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .member-card {
    padding: 16px 5px;
  }
  .member-name {
    font-size: 18px;
  }
  .member-role {
    font-size: 14px;
  }
  .member-desc {
    font-size: 13px;
  }
}

/* Media Queries */
@media (max-width: 992px) {
  .band-name {
    font-size: 60px;
  }

  .carousel-item {
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(10, 10, 10, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .band-name {
    font-size: 48px;
    letter-spacing: 5px;
  }

  .section-title {
    font-size: 30px;
  }

  .carousel-item {
    min-width: 220px;
  }

  .social-link {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 576px) {
  .band-name {
    font-size: 36px;
    letter-spacing: 3px;
  }

  .band-description {
    font-size: 16px;
  }

  .carousel-item {
    min-width: 200px;
  }

  .social-link {
    width: 100px;
    height: 100px;
  }

  .social-link i {
    font-size: 30px;
  }

  .social-link span {
    font-size: 14px;
  }
}
