/* style.css */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
font-family: Monaco, monospace;
  background-color: #f7f7f7;
  color: #333;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Menu Bar */
.menu-bar {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  padding: 0.5rem 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.menu-group {
  display: flex;
  gap: 0.5rem;
}

.menu-group.left {
  margin-right: 0.5rem;
}

.menu-group.right {
  margin-left: 0.5rem;
}

.logo-img {
  height: 70px;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.left-box,
.right-box {
  flex: 1;
}

.artwork {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.links a {
  display: block;
  text-align: center;
  margin: 0.5rem 0;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.links a hover {
  color: #FF5733; /* new color on hover */
  text-decoration: underline; /* optional: adds underline on hover */
}

.links a:hover {
  color: #FF5733; /* Change to any hover color you like */
}

.carousel {
  position: relative;
  min-height: 200px;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

#bio h2 {
  margin-right: 5rem;
}

.press-shots {
  display: flex;
  justify-content: center;
  gap: 1rem; /* spacing between the two images */
  flex-wrap: wrap; /* allows stacking on small screens */
  margin-top: 1rem;
}

.press-shot {
  width: 40%; /* or adjust to taste */
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0; /* remove auto-centering */
}

.footer {
  text-align: center;
  padding: 1rem;
  background-color: #222;
  color: #fff;
  margin-top: auto;
}

.social-links a:hover {
  color: #FF5733; /* Change to any hover color you like */
}

.social-links a {
  margin: 0 0.5rem;
  color: #fff;
  text-decoration: none;
}

/* Desktop layout */
@media (min-width: 768px) {
  .container {
    flex-direction: row;
    align-items: flex-start;
  }

  .left-box {
    max-width: 40%;
  }

  .right-box {
    max-width: 60%;
  }
}


@media (max-width: 767px) {
  .menu {
    flex-direction: column;
    align-items: center;
  }

  .menu-group.left,
  .menu-group.right {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    margin: 0.5rem 0;
  }

  /* stack groups vertically */
  .menu-group.left {
    order: 2; /* put left group below logo */
  }

  .logo {
    order: 1; /* logo first */
    margin-bottom: 0.5rem;
    
  }

  .logo-img {
  height: 30px;
}

  .menu-group.right {
    order: 2; /* right group last */
  }
}
