@font-face {
  font-family: 'Jura Light';
  src: url('../font/Julia-Light.woff2') format('woff2'),
       url('../font/Julia-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
    font-family: 'Rockwell';
    src: url('../font/Rockwell.woff2') format('woff2');
    font-weight: 300;
    font-style: normal
}

body {
  margin: 0;
  font-family: 'Rockwell', sans-serif;
  background: #000;
  color: #fff;
}

/* Base padding for all sections on mobile */
body, section {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* Increase padding on wider screens */
@media (min-width: 768px) {
  header, section  {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 768px) {
    body {
        padding: 0 !important;
    }
}

/* Layout for header */
header {
  position: sticky;
  top: 0;
  left: 0;          /* make sure it aligns left */
  padding: 10px 15px;  /* uniform padding - avoid large padding */
  box-sizing: border-box;
  background: #000;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}


.logo img {
  height: 50px;
}

/* Menu toggle - hidden on desktop, shown on mobile */
.menu-toggle {
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block !important;
  }
}

.menu-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  vertical-align: middle;
}

.hidden {
  display: none !important;
}

/* CTA Buttons - desktop: flex row; mobile: hidden by default and toggled visible */
.cta-buttons {
  display: flex;
  gap: 10px;
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
  overflow: hidden;
}

/* Desktop CTA buttons */
@media (min-width: 769px) {
  .cta-buttons {
    position: static;
    flex-direction: row;
    max-height: none !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    background: none;
    padding: 0;
  }

  .cta-buttons button {
    padding: 10px 12px;
  }
}

/* Mobile CTA buttons - initially hidden (collapsed) */
@media (max-width: 768px) {
  .cta-buttons {
    position: absolute;
    top: 60px; /* adjust to header height */
    right: 10px;
    background: black;
    flex-direction: column;
    width: max-content;
    border-radius: 5px;
    padding: 15px;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    box-sizing: border-box;
    z-index: 1000;
  }

  /* When shown, slide down with animation */
  .cta-buttons.show {
    max-height: 500px; /* enough height for buttons */
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .cta-buttons button {
    background: none;
    border: none;
    color: white;
    text-align: left;
    padding: 8px 0;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .cta-buttons button img {
    width: 20px;
    height: 20px;
  }
}

/* Button styles */
.cta-buttons button {
  font-family: 'Rockwell', sans-serif;
  cursor: pointer;
  user-select: none;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  background: #fff;
  color: #000;
  border: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-buttons button img {
  height: 20px;
  margin-right: 5px;
}

.cta-buttons button:hover,
.cta-buttons button:focus {
  background: white;
  color: black;
  outline: none;
}

/* Carousel */
.carousel {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  padding: 0 !important;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;

  /* Fix: Center text horizontally & vertically */
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.slide.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Optional: center h1 and p margins */
.slide p {
  margin: 0 auto;
}

.slide h1 {
  font-size: 3rem;
  margin: 0 0.5em;
}

.slide p {
  font-size: 1.2rem;
  max-width: 600px;
}

.location-section,
.team-section
{
  padding: 60px 20px;
}

.location-section h2,
.team-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .location-info {
    flex: 1 1 45%;
  }
  .map-embed {
    flex: 1 1 45%;
  }
  
  
}

.location-info {
  flex: 1;
  min-width: 300px;
}

.location-info p {
  margin-bottom: 1rem;
}

.team-member {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.team-member.visible {
  opacity: 1;
  transform: translateY(0);
}

.team-photo {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-gallery {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.team-gallery img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.team-gallery img.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.5);
  color: black;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  padding: 0.5rem 1rem;
  user-select: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-arrow.left {
  left: 10px;
}

.gallery-arrow.right {
  right: 10px;
}

.team-gallery:hover .gallery-arrow {
  opacity: 1;
}

.team-photo h3 {
  margin: 10px 0;
}

.team-photo button {
  background: #fff;
  color: #000;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-family: 'Rockwell', sans-serif;
}

a, a:hover, a:active, a:focus{
    color: white;
}

.team-bio {
  flex: 2;
  padding: 20px;
}

.team-bio p {
    font-size: 20px;
}


footer {
  background: #111;
  padding: 30px 0; /* no horizontal padding */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100vw;    /* full viewport width */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw; /* To stretch full width if inside container */
}

/* Wrap footer content */
.footer-inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  box-sizing: border-box;
  margin: 0 auto;
}


.footer-nav {
  display: flex;
  flex-wrap: wrap;

  /* Fix: center footer nav items */
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  padding-bottom: 20px;
}

.footer-col {
  flex: 1 1 150px;
  max-width: 250px;

  display: flex;
  flex-direction: column;
  align-items: center; /* center items inside */
  gap: 10px;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 0.8rem;
  padding-top: 10px;
  border-top: 1px solid #333;
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

/* Smaller team gallery height on narrow phones */
@media (max-width: 480px) {
    .artist-name{
        font-size: 32px;
        text-align: center;
    }

  .location-content{
    justify-content: center !important;
  }

  .team-bio{
    padding: 0 !important;
  }

  .team-bio p, .location-info{
    font-size: 20px;
  }

  .team-photo button{
    margin-top: 0.5em;
    font-size: 32px;
  }

  .map-embed{
    width: 100%;
  }
}
