

section {
   min-height: auto;
   padding: 8rem 0;
}
span {
    color: var(--primary-color);
}



.home-image img{
    height: 60rem;
    width: auto;
    animation: shadowPulse 4s ease-in-out infinite;
    object-fit: cover;
    border-radius: 20%;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown__top {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}

/* Caret button */
.dropdown-caret {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: .6rem;
  border: 2px solid var(--primary-color);
  background: var(--bg-color);
  color: var(--primary-color);
  font-size: 2.2rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.nav-dropdown.open .dropdown-caret {
  transform: rotate(180deg);
  box-shadow: 0 0 10px rgba(253,0,0,.45);
}

/* Dropdown menu (hidden by default) */
.dropdown-menu {
  position: absolute;
  top: calc(100%);
  left: 0;
  min-width: 18rem;
  background: var(--bg-color);
  border-radius: .8rem;
  padding: .8rem 0;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.5);
  display: none;
  flex-direction: column;
  z-index: 200;
}

.dropdown-menu a {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.2rem;
  color: var(--primary-text-color);
  text-decoration: none;
  padding: 1rem 2rem;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--primary-color);
  color: var(--bg-color);
}

@keyframes shadowPulse {
     0% {
    filter: drop-shadow(0 0 0 rgba(253, 0, 0, 0));
  }
  50% {
    filter: drop-shadow(0 0 45px white);
  }
  100% {
    filter: drop-shadow(0 0 0 rgba(253, 0, 0, 0));
  }
}


.navbar a:hover,
.navbar a.active {
    color: var(--primary-color);
}

#menu-icon {
    display: none;
    font-size: 3.6rem;
    color: var(--text-color);
}

.home {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 2rem;
    background: var(--bg-color);
}

.home-text h1,
.home-text h3,
.home-text p {
    color: var(--text-color);
}


.home-text h1 {
    align-items: center;
    text-align: center;
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.home-text h3 {
    text-align: center;
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    
}
.home-text p {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn {
    display:inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--bg-color);
    font-size: 1.6rem;
    letter-spacing: .1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: .3s ease;
    margin: 0 auto;
}

.btn:hover {
    background: var(--bg-color);
    color: var(--primary-color);
    border: .1rem solid var(--primary-color);
    
}

.socialmedia {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.socialmedia a {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 5rem;
    height: 5rem;

    border: 2px solid white;   /* FIXED */
    border-radius: 50%;
    text-decoration: none;
    color: var(--text-color);

    background: transparent;
    transition: .3s ease;
}
.socialmedia a i {
    font-size: 2.5rem;                /* keeps icon inside circle */
    line-height: 1;                 /* removes weird spacing */
    display: block;                 /* prevents overflow */
}

.socialmedia a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.artists {
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: var(--secondary-bg-color);
    text-align: center; 
    width: 100%;


}

.artists > h1{
    font-size: 4rem;
    color: var(--bg-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
    border-bottom: 4px solid currentColor;
    display: inline-block; /* required */
    width: auto;
    margin-top: 3rem;
}
.artists h2{
    font-size: 3rem;
    color: var(--bg-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
    margin-top: 3rem;
}

.artists h3 {
    font-size: 3rem;
    color: var(--bg-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
    border-bottom: 4px solid currentColor;
    display: inline-block; /* required */
    width: auto;
    margin-top: 3rem;
}

.artists > p {
    text-align: left;
    font-size: 1.75rem;
    color: var(--bg-color);
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
    margin-top: 3rem;
}
.artist-feature {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 6rem;
  padding-bottom: 6rem;
  border-radius: 0;
  margin-bottom: 0;
  width: 100%;
}
.artist-feature__left h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 3.2rem;
  text-transform: uppercase;
  margin: 0 0 .8rem;
  color: inherit; /* uses dark/light section text color */
  border: none;   /* prevents any border bleed */
}
.artist-feature--dark {
  background: var(--bg-color);
  color: var(--primary-text-color);
}

.artist-feature--light {
  background: var(--secondary-bg-color);
  color: var(--bg-color);
}

.artist-feature__wrap {
 width: min(1200px, 100%);
  margin: 0 ;
  padding: 0 9%;
  display: flex;
  gap: 7rem;
  align-items: center;
  justify-content: flex-start;

}

.artist-feature--flip .artist-feature__wrap {
  flex-direction: row-reverse;
}

.artist-feature__left {
   flex: 0 0 340px;
  text-align: center;
  
}

.artist-feature__left img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 22%;
  margin-bottom: 1.2rem;
}

.artist-feature__left h2 {
  font-size: 3.2rem;
  margin: 0 0 .8rem;
}

.artist-feature__right {
 flex: 1;
  max-width: 700px;
}

.artist-tagline {
  font-size: 1.7rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

/* Keep your existing preview grid */
.artist-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 1.2rem;
  margin-top: 1.8rem;
  max-width: 780px;
}

.artist-preview img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: .8rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.artist-preview img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 2px var(--primary-color);
}

/* Button row */
.artist-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: nowrap;   
  margin-bottom: 1.2rem;
  align-items: center;
}

.portfolio-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
/* Make social links readable on light sections too */
.artist-feature--light .portfolio-links a {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 5rem;
    height: 5rem;

    border: 2px solid var(--bg-color);   /* FIXED */
    border-radius: 50%;
    text-decoration: none;
    color: var(--bg-color);

    background: transparent;
    transition: .3s ease;
}

.artist-feature--light .portfolio-links a i {
  font-size: 2.5rem;                /* keeps icon inside circle */
  line-height: 1;                 /* removes weird spacing */
  display: block;                 /* prevents overflow */
}

.artist-feature--light .portfolio-links a:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.artist-feature--dark .portfolio-links a {
  display: flex;
    justify-content: center;
    align-items: center;

    width: 5rem;
    height: 5rem;

    border: 2px solid white;   /* FIXED */
    border-radius: 50%; 
    text-decoration: none;
    color: var(--text-color);

    background: transparent;
    transition: .3s ease;

}
.artist-feature--dark .portfolio-links a i {
  font-size: 2.5rem;                /* keeps icon inside circle */
  line-height: 1;                 /* removes weird spacing */
  display: block;                 /* prevents overflow */
}

.artist-feature--dark .portfolio-links a:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.hidden {
    display: none;
}

.portfolio {
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 2rem;
    background: var(--secondary-bg-color);
}

.portfolio h1{
    font-size: 4rem;
    color: var(--bg-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
    border-bottom: 4px solid currentColor;
    display: inline-block; /* required */
    width: auto;
}
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.picture-box {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: .8rem;
    margin-top: 1.5rem;
}

.picture-box img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: .6rem;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.picture-box img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 2px var(--primary-color);
}

.contact {
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: var(--bg-color);
    text-align: center;
}

.contact h1{
    font-size: 4rem;
    color: var(white);
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
    border-bottom: 4px solid currentColor;
    display: inline-block; /* required */
    width: auto;
}

.contact h2 {
    font-size: 2.5rem;
    color: var(white);
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}
.contact p {
    text-align: center;
    font-size: 1.6rem;
    color: var(white);
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}
.contact form{
    max-width: 70rem;
    margin: 1rem auto;
    margin-bottom: 3rem;
    text-align: center;
}

.contact form .input-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact form .input-box input,
.contact form textarea {
    width:100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--primary-text-color);
    background: var(--secondary-bg-color);
    border-radius: .8rem;
    margin: .7rem 0;
}

.contact form .input-box input {
    width: 49%;
}
.contact form textarea {
    resize: none;
}

.contact form .submit-button {
    display: inline-flex;
    padding: 1rem 2.8rem;
    background: var(--bg-color);
    border-radius: 4rem;
    box-shadow: 0 0 1rem var(--primary-text-color);
    font-size: 1.6rem;
    color: var(--second-bg-color);
    letter-spacing: .1rem;
    font-weight: 600;
    transition: .3s ease;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    cursor: pointer;
}
.contact form .submit-button:hover {
    background: var(--bg-color);
    color: var(--primary-color);
    border: .1rem solid var(--primary-color);
}

.footer {
    display: flex;
    padding: 2rem 9%;
    background: var(--bg-color);
    text-align: center;
    color: var(--secondary-bg-color);
    font-size: 1.4rem;
    text-align: center;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer p {
    font-size: 1.6rem;
}
.footer-top a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .8rem;
    background: var(--primary-color);
    border-radius: .8rem;
    transition: .3s ease;
    text-decoration: none;   /* <--- fixes the underline */
}

.footer-top a:hover {
    box-shadow: 0 0 1rem var(--secondary-bg-color);
}

.footer-top a i {
    font-size: 2.4rem;
    color: var(--bg-color);
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  z-index: 10000;
}

.lightbox img.lightbox-media {
  max-width: min(1100px, 92vw);
  max-height: 85vh;
  border-radius: 1rem;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: var(--bg-color);
  color: var(--primary-color);
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  box-shadow: 0 0 12px rgba(253,0,0,.6);
}





@media(max-width: 1200px){
    html{font-size: 55%;
    }
}

@media(min-width:1024px){
    .artist-feature--light .artist-feature__wrap {
    margin-right: auto;
    margin-left: 0;
  }

  .artist-feature--dark .artist-feature__wrap {
    margin-left: auto;
    margin-right: 0;
  }
}

@media(max-width: 991px){
    html{font-size: 50%;
    }
    .home {
        flex-direction: column;
        text-align: center;
    }
    .about {
        flex-direction: column;
        text-align: center;
    }
    
}
@media (min-width: 769px) {
  .nav-dropdown:hover .dropdown-menu {
    display: flex;
  }
}

@media(max-width: 768px){
    html{font-size: 45%;
    }
    #menu-icon {
        display: block;
        cursor: pointer;
        margin-left: 2rem;
    }
    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: .3s;
    }
    .navbar.active {
        left: 0;
    }
    .navbar a {
        font-size: 4rem;
        margin: 2rem 0;
    }
    .nav-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

   .nav-dropdown__top {
    width: 100%;
    justify-content: center;
  }




  .dropdown-menu {
    position: static;
    width: 100%;
    display: none;
    margin-top: 1.2rem;
    box-shadow: none;
    text-align: center;
  }

.nav-dropdown.open .dropdown-menu { 
    display: flex;
flex-direction: column;
  align-items: center; }

    .dropdown-menu a {
    width: 100%;
    text-align: center;
    padding: 1.2rem 0;
    font-size: 3.2rem;
  }
.home-image img {
  height: 28rem;   /* was 60rem */
  max-width: 90vw;
  border-radius: 20%;
}

    
 .artist-feature__left {
  flex: none;           /* stop fixed column width from desktop */
  width: 100%;
}

.artist-feature__left img {
  width: min(260px, 80vw);
  height: min(260px, 80vw);
  border-radius: 22%;
}

/* Optional: reduce the big gap on mobile */
.artist-feature__wrap {
  gap: 3rem;            /* was 7rem on desktop */
  padding: 0 6%;        /* slightly tighter gutters */
}

.artist-feature__wrap,
  .artist-feature--flip .artist-feature__wrap {
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;        /* centers the wrap on mobile */
  }

  /* ✅ Make both sides full width */
  .artist-feature__left,
  .artist-feature__right {
    width: 100%;
    max-width: 100%;
  }

  /* ✅ Optional: center the right text + buttons */
  .artist-actions,
  .portfolio-links {
    justify-content: center;
  }

  .artist-feature--flip .artist-feature__wrap {
    flex-direction: column;
  }

  .artist-actions {
    justify-content: center;
  }

  .artist-preview {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

   .picture-box {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .picture-box img {
    width: 100%;
    display: block;
  }
}

@media(max-width: 450px){
    html{font-size: 40%;
    }
    .about .about-img img {
        height: 20rem;
    }
}

@media(max-width: 360px){
    html{font-size: 35%;
    }
}