/* General-start */
root {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #f0f0f0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background-color: #111;
  height: 250px;
  border-bottom: 1px solid #333;
}

.logo img {
  height: 250px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  font-weight: bold;
  color: #f0f0f0;
  font-size: 1.2em;
  transition: color 0.2s ease;
}

.nav-links li a:hover {
  color: #ff4d4d;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -1;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 1em;
  padding: 0.5em 1em;
  background: #000;
  color: #fff;
  z-index: 1000;
  border: 2px solid #fff;
  font-weight: bold;
}

/* General-end*/

/* Index-start */

.intro-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3em;
  max-width: 1200px;
  margin: 2em auto 0 auto;
  padding: 0 1em;
  flex-wrap: wrap;
}

.intro-left {
  flex: 1 1 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5em;
}

.intro-right {
  flex: 1 1 280px;
  max-width: 500px;
  min-width: 280px;
  position: relative;
  z-index: 1;
}

.intro-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(./bead_kepek/bg.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: -1;
}

.intro-right h1 {
  margin-top: 0;
  font-size: 2em;
  color: #fff;
}

.intro-right p {
  color: #f0f0f0;
  font-size: 1.1em;
  margin-bottom: 1em;
}

.video-wrapper {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px #000a;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: none;
}

.video-description {
  margin-top: 1em;
  font-size: 0.95em;
  background-color: #1a1a1a;
  padding: 1em;
  border-radius: 8px;
  border: 1px solid #444;
  color: #ddd;
  width: 100%;
  max-width: 700px;
}

.video-description summary {
  cursor: pointer;
  font-weight: bold;
  font-size: 1em;
  color: #E7473C;
}

.video-description p {
  margin-top: 0.5em;
  line-height: 1.5;
}

.video-description a {
  color: #ffffff;
}

.video-description a:visited {
  color: #918787;
}

/* Projects Section */
.projects-section {
  max-width: 1200px;
  margin: 2em auto;
  padding: 0 1em 2em 1em;
}

.projects-section h2 {
  color: #D32F2F;
  font-size: 1.3em;
  margin-bottom: 1.5em;
}

.projects-grid {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
  justify-content: center;
}

.project-card {
  flex: 1 1 220px;
  max-width: 260px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2em;
}

.spotify-embed {
  width: 100%;
  height: 352px;
  border: none;
  border-radius: 12px;
  display: block;
}

.project-card p {
  color: #f0f0f0;
  text-align: center;
  font-size: 1em;
  margin: 0;
}

.contrast-toggle {
  background: #222;
  color: #fff;
  border: 1px solid #555;
  padding: 0.5em 1em;
  font-size: 0.9em;
  margin: 0.5em;
  border-radius: 5px;
}

@media (max-width: 900px) {
  .intro-section {
    flex-direction: column;
    align-items: stretch;
    gap: 2em;
  }

  .intro-left,
  .intro-right {
    max-width: 100%;
  }

  .projects-grid {
    gap: 1em;
  }
}

@media (max-width: 600px) {
  .intro-section {
    padding: 0.5em;
    gap: 1em;
  }

  .projects-section {
    padding: 0 0.5em 1em 0.5em;
  }

  .projects-grid {
    flex-direction: column;
    gap: 1em;
  }

  .project-card {
    max-width: 100%;
    min-width: 0;
  }

  .intro-right h1 {
    font-size: 1.2em;
  }

  .intro-right p {
    font-size: 1em;
  }
}

/* Index-end */

/* Artist-start */

/* Artists Table */
.artists-section {
  max-width: 900px;
  margin: 3em auto 2em auto;
  padding: 0 1em;
  color: #ddd;
}

.artists-section h1 {
  text-align: center;
  margin-bottom: 1.5em;
  font-size: 2em;
  color: #E7473C;
}

.artists-table-wrapper {
  background-color: #1e1e1e;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
  overflow-x: auto;
  padding: 1em;
}

.artists-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  background-color: #1e1e1e;
}

.artists-table th,
.artists-table td {
  border: 1px solid #333333;
  padding: 1em 0.5em;
  vertical-align: middle;
  color: #ddd;
}

.artists-table th {
  background-color: #2a2a2a;
  font-weight: 700;
}

.artists-table td {
  background-color: #1e1e1e;
  font-weight: 500;
}

.artists-table .logo-image,
.artists-table .artist-image {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  background-color: #2a2a2a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  display: block;
  margin: 0 auto;
}

.artists-table .row-label {
  background-color: #2a2a2a;
  font-weight: 700;
  color: #ddd;
  text-align: left;
  padding-left: 1em;
}

.artists-table a {
  color: #E7473C;
  font-weight: 600;
  transition: color 0.2s;
}

.artists-table a:hover {
  color: #B22222;
}

.artists-table a:visited {
  color: #f67b00;
}

/* Festival Carousel */

.festival-section {
  max-width: 900px;
  margin: 3em auto 2em auto;
  text-align: center;
}

.festival-section h2 {
  color: #E7473C;
  font-size: 1.4em;
  margin-bottom: 1.5em;
}

.carousel {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  border: 2px solid #E7473C;
  border-radius: 6px;
  object-fit: cover;
  display: flex;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-top: 1em;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #E7473C;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background: #E7473C;
}

@media (max-width: 900px) {

  .artists-section,
  .festival-section {
    max-width: 100%;
    padding: 0 0.5em;
  }

  .artists-table th,
  .artists-table td {
    padding: 0.5em 0.4em;
    font-size: 0.95em;
  }

  .artists-table .logo-image,
  .artists-table .artist-image {
    width: 50px;
    height: 50px;
  }

  .carousel {
    max-width: 100vw;
    border-radius: 8px;
  }
}

@media (max-width: 600px) {

  .artists-section,
  .festival-section {
    max-width: 100%;
    padding: 0 0.3em;
  }

  .artists-table th,
  .artists-table td {
    padding: 0.3em 0.2em;
    font-size: 0.8em;
  }

  .artists-table .logo-image,
  .artists-table .artist-image {
    width: 35px;
    height: 35px;
  }

  .carousel {
    max-width: 100vw;
    border-radius: 6px;
  }
}

/* Artist-end */

/* Connections-start */

.form-container {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 2em;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="url"],
textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  background-color: #111;
  color: #f0f0f0;
  border: 1px solid #333;
}

textarea {
  resize: vertical;
}

.radio-group {
  display: flex;
  gap: 15px;
}

.checkbox-group {
  margin-top: 10px;
}

.button-group {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.submit-btn {
  background-color: #007bff;
  color: white;
}

.submit-btn:hover {
  background-color: #0056b3;
}

.delete-btn {
  background-color: #ff4d4d;
  color: white;
}

.delete-btn:hover {
  background-color: #cc0000;
}

.form-footer-note {
  text-align: center;
  font-size: 0.9em;
  color: #aaa;
  margin-top: 2em;
  padding: 1em 0;
}

.connection-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2em;
  max-width: 1200px;
  margin: 2em auto;
  padding: 1em;
}

.info-container {
  flex: 1;
  background: #222;
  border-radius: 8px;
  padding: 2em 1.5em;
  margin-left: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 250px;
  max-width: 350px;
}

.info-container h3 {
  margin-top: 0;
  font-size: 1.5em;
  color: #fff;
}

.info-container p {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 2em;
  text-align: left;
}

.info-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
  .connection-container {
    flex-direction: column;
    align-items: stretch;
    gap: 2em;
  }

  .info-container {
    margin-left: 0;
    max-width: 100%;
    min-width: unset;
    align-items: stretch;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 1em;
    gap: 1em;
  }

  .logo img {
    height: 100px;
  }

  .nav-links {
    gap: 10px;
    font-size: 1em;
  }

  .connection-container {
    padding: 0.5em;
    margin: 0.5em;
    gap: 1em;
  }

  .form-container,
  .info-container {
    padding: 1em;
  }

  .info-container h3 {
    font-size: 1.1em;
  }

  .info-container p {
    font-size: 0.95em;
  }
}

/* Connections-end */
