/* body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f4f4;
  color: #333;
} */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #fff;

  /* Gradient background */
  background: linear-gradient(-45deg, #0a1a3a, #4b3f72, #1a2a6c, #6a5acd);
  background-size: 400% 400%;

  /* Animation */
  animation: gradientShift 12s ease infinite;
  text-align: center;
}

/* HEADER */
header {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
}

/* NAV HOVER EFFECT */
nav a {
  margin: 0 10px;
  color: #ddd;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: white;
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

nav a:hover {
  color: white;
}

nav a:hover::after {
  width: 100%;
}

/* SECTIONS
section {
  padding: 40px;
  max-width: 1000px;
  margin: auto;
} */

section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 40px;
  max-width: 1100px;   /* controls content width */
  margin: 40px auto;   /* centers + adds space from sides */
}

.art-card {
  position: relative;
  min-width: 300px;
  flex: 0 0 auto;
  padding: 10px;
  border-radius: 10px;
  overflow: hidden;

  /* animated gradient background */
  background: linear-gradient(-45deg, #0a1a3a, #4b3f72, #1a2a6c, #6a5acd);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;

  /* add subtle shadow to make cards stand out */
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);

  /* optional text color */
  color: white;
}

h2 {
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

/* GALLERY */
.gallery {
  display: flex;
  flex-wrap: nowrap;        /* 🔥 keeps everything in one row */
  gap: 20px;
  overflow-x: auto;         /* 🔥 allows horizontal scroll */
  padding-bottom: 10px;
}

.art-card {
  background: #130a3a;
  padding: 10px;
  border-radius: 8px;
  width: calc(33% - 20px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* CARD HOVER EFFECT */
.art-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.art-card img {
  width: 100%;
  border-radius: 5px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* IMAGE HOVER ZOOM */
.art-card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

/* INPUT FOCUS EFFECT */
input:focus, textarea:focus {
  border: 1px solid #111;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  outline: none;
}

/* BUTTON */
button {
  padding: 10px;
  border: none;
  background: #111;
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease;
}

/* BUTTON HOVER */
button:hover {
  background: #333;
  transform: scale(1.05);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: white;
}
/* SLIDESHOW CONTAINER */
.slideshow {
  position: relative;
  overflow: hidden;
}

/* HIDE ALL IMAGES */
.slide {
  display: none;
  width: 100%;
  border-radius: 5px;
}

/* SHOW ACTIVE IMAGE */
.slide.active {
  display: block;
}

/* BUTTONS */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.2s ease;
}

/* POSITIONING */
.prev { left: 10px; }
.next { right: 10px; }

/* HOVER EFFECT */
.prev:hover, .next:hover {
  background: rgba(0,0,0,0.9);
  transform: translateY(-50%) scale(1.1);
}
/* BANNER HEADER */
.banner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

/* IMAGE */
.banner-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* shows entire image */
  object-position: center; /* center the image */
}

/* OVERLAY CONTENT */
.banner-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
  padding: 20px 30px;
  border-radius: 10px;
}

/* NAV LINKS */
.banner nav a {
  margin: 0 10px;
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.banner nav a:hover {
  color: white;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* EXPERIENCE SECTION */
#experience {
  padding: 40px;
  max-width: 1100px;
  margin: 40px auto;
  text-align: center;
}

.experience-img-container img {
  width: 30%;
  max-width: 1000px;  /* prevent extremely wide image */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;

}

/* Optional hover zoom effect */
.experience-img-container img:hover {
  transform: scale(1.02);
}

/* HEADER WITH SIDE IMAGES */
.side-images-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px; /* space between images and content */
  padding: 20px;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
}

.side-images-header .side-img {
  flex: 1 1 150px; /* allows flexible width but keeps images proportional */
}

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

.side-images-header .header-content {
  flex: 2 1 300px; /* content area is bigger than side images */
  text-align: center;
}

.side-images-header nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.side-images-header nav a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.side-images-header nav a:hover {
  color: white;
}

/* Responsive adjustment */
@media (max-width: 800px) {
  .side-images-header {
    flex-direction: column; /* stack images and content on mobile */
  }

  .side-images-header .side-img {
    width: 80%;
    margin: 10px 0;
  }
}

/* VIDEO SECTION */
#intro-video {
  display: flex;
  justify-content: center;
  padding: 30px 20px;
}

#intro-video .video-content {
  width: 100%;
  max-width: 900px;      /* limits video width */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}