:root {
  --teal: #5A8785;
  --dark: #000;
  --light: #fafafa;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── NAVIGATION BAR ─────────────────────────────────────────────────── */
/* Drop the bar down slightly and draw thick black lines inside the teal block */
#main-nav {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;

  /* Drop the bar a few millimetres from the top of the page */
  margin-top: 0.3rem !important;

  /* Increase top and bottom padding so text sits nicely between thick lines */
  padding: 0.5rem 0.35rem !important;
  background-color: var(--teal) !important;
  position: relative !important;
  z-index: 1000 !important;
  border: none !important; /* remove any existing borders */
}

/* Thick black line inside the teal block, at its very top edge */
#main-nav::before {
  content: "";
  position: absolute;
  top: 0;               /* flush with the top edge of the teal */
  left: 0;
  width: 100%;
  height: 8px;          /* twice as thick as before */
  background-color: #000;
  z-index: 2;
}

/* Thick black line inside the teal block, at its very bottom edge */
#main-nav::after {
  content: "";
  position: absolute;
  bottom: 0;            /* flush with the bottom edge of the teal */
  left: 0;
  width: 100%;
  height: 8px;          /* twice as thick as before */
  background-color: #000;
  z-index: 2;
}

#main-nav .nav-item {
  flex: 1 !important;
}
#main-nav .nav-left {
  text-align: left !important;
}
#main-nav .nav-center {
  text-align: center !important;
}
#main-nav .nav-right {
  text-align: right !important;
}

#main-nav a {
  color: #fff !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 2rem !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  margin: 0 0.5rem !important;
}
#main-nav .social-icon {
  margin-left: 0.5rem !important;
  font-size: 1.2rem !important;
  vertical-align: middle !important;
  color: #fff !important;
}

@media (max-width: 768px) {
  #main-nav .nav-left,
  #main-nav .nav-right {
    display: none !important;
  }
  #main-nav .nav-center {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
  }
  #main-nav .nav-center a {
    display: inline-block !important;
    margin: 0 auto !important;
  }
}

/* ─── Brick background for entire page ────────────────────────────────── */
html, body {
  background: url("/images/bricks.png") center center / cover no-repeat fixed;
  background-color: var(--dark);
  color: var(--light);
  font-family: Arial, sans-serif;
  height: 100%;
}

/* ─── PROFILE WRAPPER & GRID ───────────────────────────────────────────── */
.profile-wrapper {
  margin: 20px;
  border: 2px solid var(--teal);
  background: rgba(0, 0, 0, 0.7); /* optional overlay for readability */
}

/* Grid container */
.container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

/* BIO */
.bio-section {
  padding: 20px;
  border-right: 2px solid var(--teal);
}
.bio-section h1 {
  font-size: 5rem;
  text-transform: uppercase;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.bio-section p {
  font-size: 2.2rem;
  line-height: 1.5;
}

/* MIDDLE: ARTWORK + SOCIALS + REMINDER */
.column-mid {
  border-right: 2px solid var(--teal);
  display: flex;
  flex-direction: column;
}
.artwork-block {
  padding: 20px;
  border-bottom: 2px solid var(--teal);
}
.artwork-block img {
  width: 100%;
  display: block;
  border: 2px solid var(--teal);
}
.info-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

/* Section headings */
.socials-section h2,
.mixes-section h2 {
  font-size: 2rem;
  text-transform: uppercase;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 5px;
  margin-bottom: 10px;
}

/* Social links */
.socials-section ul {
  list-style: none;
}
.socials-section li {
  margin: 5px 0;
}
.socials-section a {
  color: var(--light);
  text-decoration: none;
}

/* Reminder */
.reminder-section {
  margin-top: auto;
  display: flex;
  align-items: center;
}
.reminder-line {
  flex: 1;
  border-bottom: 2px dashed var(--teal);
  margin: 0 10px;
}
/* Calendar button styling */
#calendar-btn {
  padding: 0.5rem 1rem;
  background: var(--teal);
  color: var(--dark);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  margin-top: 0.5rem;
  /* Align to the right of the dashed line */
  align-self: flex-end;
}
#calendar-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

/* RIGHT: MIXES */
.column-right {
  display: flex;
  flex-direction: column;
}
.mixes-section {
  padding: 20px;
}
.mixes-list {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 20px;
}
.mix-show {
  background: #111;
  padding: 10px;
  border: 2px solid var(--teal);
  margin-bottom: 10px;
}
.mix-show iframe {
  width: 100%;
  height: 60px;
  border: none;
}
.mix-show button {
  background: none;
  border: none;
  color: var(--teal);
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Mix input */
.mix-input input {
  width: 100%;
  padding: 10px;
  border: 2px solid var(--teal);
  background: var(--dark);
  color: var(--light);
  font-size: 1rem;
}
.mix-input button {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  background: var(--teal);
  border: none;
  color: var(--dark);
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
}

.error {
  text-align: center;
  color: #f55;
  margin-top: 2rem;
}

/* ─── MOBILE RESPONSIVE (unchanged from original) ───────────────────────────────────────── */
@media (max-width: 768px) {
  .container {
    display: block;
  }

  .bio-section,
  .column-mid,
  .column-right {
    width: 100%;
    padding: 15px;
    border-right: none;
    border-bottom: 2px solid var(--teal);
  }

  .bio-section h1 {
    font-size: 3rem;
  }

  /* ↓ Halve bio paragraph size on mobile ↓ */
  .bio-section p {
    font-size: 1.1rem;
  }

  .socials-section h2,
  .mixes-section h2 {
    font-size: 1.5rem;
  }

  .mix-show iframe {
    height: 50px;
  }
}

/* ─── NEW: FORCE “Mixes” TO APPEAR ON MOBILE ──────────────────────────── */
@media (max-width: 768px) {
  .mixes-section {
    display: block !important;
  }
}
