@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*/*
body.homepage {
    background-image: url(./assets/background-image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 100vh;
    height: 100%;
    margin: 0;
    overflow-x: hidden;
}
*/

.slideshow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


body {
    background-color: #ffff;
    font-family: "Montserrat", sans-serif; 
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 300;
    text-transform: uppercase;
}

.navigation-links {
    list-style-type: none;
    display: flex;
    padding: 0;
    margin: 0;
    padding: 20px 20px;
  }
  
  .navigation-links li {
    margin-left: 20px;
    position: relative;
    font-size: 1.4rem;
  }
  
  .navigation-links li a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    font-weight: normal;
    padding: 8px;
    transition: color 0.3s ease;
    font-weight: 200;
  }
  
  .navigation-links li a:hover {
    color: #555;
  }
  
  /* Dropdown Menu */
  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    list-style-type: none;
    margin: 0;
    padding: 10px 0;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none; 
    z-index: 1000;
  }
  
  .dropdown li {
    padding: 5px 18px;
  }
  
  .dropdown li a {
    text-decoration: none;
    color: #000;
  }
  
  .dropdown li a:hover {
    color: #555;
  }
  
  /* Show Dropdown on Hover */
  .dropdown-item:hover .dropdown {
    display: block;
  }


/* Hover Effects */
li a:hover,
 li a:hover {
    color: black; /* Change to your preferred hover color */
}

.navigation-bar .navigation-links li a:hover,
.navigation-bar .navigation-links li a.active {
    color: black;
    text-decoration: underline;
    text-underline-offset: 0.5rem;
}


/* hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.full-screen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.full-screen-menu ul {
    text-align: center;
}

.full-screen-menu li {
    margin: 20px 0;
    font-size: 2rem;
    text-decoration: none;
    list-style: none;
}

.full-screen-menu a {
    color: #333;
    transition: color 0.3s ease;
    text-decoration: none;
}

.full-screen-menu {
    color: gray;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
}

.close-btn {
    color: gray;
}


.art img {
    max-width: 100%;
    height: 360px;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    top: 40px;
}

/* BIOGRAPHY */
.biography {
    padding: 2em 1em;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.bio-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    align-items: flex-start;
    flex-direction: row-reverse;
}

.about-img {
    flex: 1 1 300px;
    max-width: 400px;
    display: flex
}

.about-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.bio-text {
    flex: 2 1 400px;
    max-width: 600px;
    text-align: justify;
}

.bio-text p {
    margin-bottom: 1em;
    font-weight: 200;
}

.social-icons {
    display: flex;
    gap: 1em;
    justify-content: flex-start;  
}

.social-icons a {
    font-size: 2.3rem;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #000; 
}



/* GALLERY */
/* Gallery styles */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}


.gallery-item {
  text-align: center;
}

.artwork {
    aspect-ratio: 3 / 4;
    width: 100%;
    overflow: hidden;
}

.artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the images fill the container */
  cursor: pointer;
}

.artwork img:hover {
    transform: scale(1.05);
}
/* Title styling */
.gallery-title {
  margin-top: 0.8rem;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
  text-transform: uppercase;
}

.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: #fff;
    padding: 2rem;
    max-width: 700px;
    max-height: 90vh;
    overflow: auto;
    text-align: center;
    border-radius: 12px;
}

.modal-content img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 6px;
}

.modal-content h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.modal-content p {
    font-size: 1rem;
    color: #555;
}

.close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.gallery-footer {
   position: relative;
   top: 1710px;
}


/* Exhibition */
.exhibition-title {
    display: inline-flex;
    justify-content: flex-start;
    position: relative;
    top: 30px;
    left: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
}

.exhibition-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  /* --- Tabs --- */
  .exhibition-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
  }
  .exhibition-tab {
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: bold;
    border-bottom: 2px solid transparent;
  }
  .exhibition-tab.active {
    border-bottom: 2px solid black;
  }

  /* --- Gallery --- */
  .exhibition-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
  }
  .exhibition-gallery img {
    display: flex;
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
  }

  /* --- Modal --- */

  .exhibition.modal {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    z-index: 9999;
  }
  .exhibition.modal.hidden {
    display: none;
  }
  .modal-close {
      position: fixed;
      top: 20px;
      right: 30px;
      background: transparent;
      font-size: 3rem;
      border: none;
      cursor: pointer;
      z-index: 10000;
  }
  .exhibition-modal-body {
    display: flex;
    flex: 1;
    padding: 40px;
    gap: 40px;
    box-sizing: border-box;
    align-items: flex-start;
  }
  
  .exhibition-info {
    flex: 1 1 50%;
    min-width: 300px; /* prevents text from collapsing */
    overflow-y: auto; /* scroll text if too tall */
    padding-right: 20px;
  }
  
  .exhibition-images {
    flex: 1 1 50%;
    min-width: 300px; /* prevents image from collapsing */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  
  
  .swiper {
    width: 100%;
    max-height: 80%;
  }
  
  .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    color: black;
  }

  #modal-title, #modal-description {
    margin-bottom: 1em;
  }

  #modal-description, #modal-artists, #modal-work, #modal-dates, #modal-location {
    font-weight: 200;
  }



  /*ARROWS/*/
  .modal-prev, .modal-next {
    position: absolute;
    top: 50%;
    font-size: 3rem;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10000;
    color: black;
  }
  .modal-prev { left: 20px; }
  .modal-next { right: 20px; }

.exhibition-footer {
    position: absolute;
    top: 390px;
    right: 0;
    width: 100%;
    display: inline-flex;
    justify-content: flex-end;
}

.exhibition-footer a {
    margin-left: 5px;
}

/* SADESIX */
.orange-background {
  background-color: #f15a29;
  margin: 0;
  padding: 0;
}

header img {
  max-width: 400px;
  margin: 1rem;
  position: relative;
  top: 10px;
  right: 60px;
}

.orange-top {
  background-color: #d84315; /* Darker orange */
  padding: 1rem 2rem;
  height: 100px;
}

.showcase-title {
  position: relative;
  top: 40px;
  left: 50px;
  font-size: 2rem;
  display: inline-block;
}

.sadesix-image {
  display: flex;
  gap: 3vw; /* flexible gap instead of fixed rem */
  justify-content: center;
  flex-wrap: wrap; /* allows wrapping on small screens */
}

.sadesix-image img {
  width: 25vw;   /* instead of 400px */
  max-width: 400px; /* keeps them from being too large */
  height: auto;  /* maintain aspect ratio */
  position: relative;
  top: 5vh;      /* scales with viewport */
}

.sade-six {
  display: inline-block;
  position: relative;
  bottom: 623px;
  left: 340px;
}

.sade-six img {
  height: 40px;
}

.sadesix-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
  position: relative;
  right: 55px;
}
/* Paragraph block */
.sadesix-paragraph {
  flex: 2;
  text-align: justify;
}

.sadesix-paragraph p {
  margin-bottom: 1em;
}

/* Quote text */
.sadesix-text {
  flex: 1;
  text-align: right;
}

.sadesix-text p {
  font-size: 3vw; /* scales */
  font-family: "Alfa Slab One", serif;
  text-transform: uppercase;
}

/* Footer icons */
footer.footer-links {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin-top: 4rem;
    padding: 2rem 1rem;
    background-color: #F2F2F2;


}

footer.sade-six-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #d84315;   /* dark background */
  color: #fff;              /* light text for contrast */
  padding: 2rem 1rem;
  position: relative;
  margin-top: 4rem;
}

.sadesix-icons {
  display: flex;
  gap: 1rem;
  font-size: 2.5vw;
}


.sadesix-icons a {
  color: #000;            /* black icons */
  transition: color 0.3s;
}

.site-developed {
  text-align: center;
  font-size: 0.9rem;
  color: #000;
}


.site-developed a {
  text-decoration: underline;
}




