/* Color scheme:
   background: #e8f1f2
   accent:     #7a9e7e
   dark text:  #31493c
*/

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 16px 0;
  background-color: #e8f1f2;
  font-family: "Kedebideri", system-ui, sans-serif;
  font-size: 15px;
  color: #31493c;
}

#page {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid #31493c;
  padding: 20px;
}

/* Header */

header {
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #31493c;
  padding-bottom: 10px;
}

h1 {
  margin: 0;
  letter-spacing: 2px;
  font-size: 28px;
  font-weight: 700;
  color: #31493c;
}

.tagline {
  margin-top: 4px;
  font-style: italic;
  font-size: 14px;
  color: #7a9e7e;
}

/* Main content */

main {
  margin-top: 15px;
}

section {
  margin-bottom: 24px;
}

/* Unified section layout */

.about-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
}

.photo-cell {
  flex: 0 0 180px;
  max-width: 180px;
}

.photo-cell img {
  width: 100%;
  height: auto;
  border: 1px solid #31493c;
}

.about-text {
  flex: 1;
  min-width: 220px;
  font-size: 15px;
}

/* Buttons — clean 90s aesthetic */

.button-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 14px;
  border: 1px solid #31493c;
  background-color: #e8f1f2;
  color: #31493c;
  text-decoration: none;
  cursor: pointer;

  /* gentle 90s raised button */
  box-shadow:
    inset 0 0 0 1px #ffffff,
    0 2px 0 #31493c;
}

.btn.primary {
  background-color: #7a9e7e;
  color: white;
}

.btn:hover {
  filter: brightness(1.05);
}

.btn:active {
  box-shadow:
    inset 0 0 0 1px #ffffff,
    0 1px 0 #31493c;
  transform: translateY(1px);
}

/* Instagram icon inside button */

.btn.insta svg {
  width: 18px;
  height: 18px;
  fill: #31493c;
  transition: 0.2s;
}

.btn.insta:hover svg {
  fill: #7a9e7e;
}

.btn.primary.insta {
  background-color: #e8f1f2;
  color: #31493c;
}

/* Carousel */

.shows-block {
  margin-top: 28px;
}

.carousel {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-window {
  flex: 1;
  border: 1px solid #31493c;
  padding: 4px;
  background-color: #ffffff;
}

.carousel-image {
  display: none;
  width: 100%;
  height: auto;
}

.carousel-image.active {
  display: block;
}

.carousel-btn {
  border: 1px solid #31493c;
  background-color: #7a9e7e;
  color: #ffffff;
  padding: 6px 10px;
  font-size: 16px;
  cursor: pointer;
  min-width: 40px;

  box-shadow:
    inset 0 0 0 1px #ffffff,
    0 2px 0 #31493c;
}

.carousel-btn:hover {
  filter: brightness(1.05);
}

.carousel-btn:active {
  box-shadow:
    inset 0 0 0 1px #ffffff,
    0 1px 0 #31493c;
  transform: translateY(1px);
}

.carousel-note {
  margin-top: 6px;
  font-size: 13px;
  color: #555555;
}

/* Footer */

footer {
  margin-top: 20px;
  border-top: 1px solid #31493c;
  padding-top: 8px;
  text-align: center;
  font-size: 12px;
  color: #31493c;
}

/* Responsive */

@media (max-width: 640px) {
  body {
    padding: 8px 0;
  }

  #page {
    padding: 16px;
    border-left: none;
    border-right: none;
  }

  .about-layout {
    flex-direction: column;
    align-items: center;
  }

  .photo-cell {
    max-width: 220px;
  }

  .about-text {
    width: 100%;
  }

  .button-row {
    justify-content: center;
  }

  .carousel {
    flex-direction: column;
  }

  .carousel-btn {
    width: 100%;
    max-width: 200px;
  }
}