/* PRODUCTION STYLES */
/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* full viewport height */
  background: url('') center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* parallax scrolling effect */
  background-attachment: fixed;
}

/* White overlay */
.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85); /* semi-transparent white */
  z-index: 1;
}

/* Heading */
.hero-section h1 {
  position: relative;
  z-index: 2;
  font-size: 5rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  font-family: "Georgia";
  margin: 0 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-section h1 {
    font-size: 4rem;
  }
}

@media (max-width: 600px) {
  .hero-section h1 {
    font-size: 2.8rem;
  }
}

.workshops-section {
  width: 100%;
  padding: 0px 5% 60px 5%;
  box-sizing: border-box;
}

.workshops-section .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap; /* For responsiveness */
}

.workshops-section .row.reverse {
  flex-direction: row-reverse;
}

.workshops-section .text {
  flex: 1;
  padding: 20px;
}

.workshops-section .text h2 {
  font-family: Georgia;
  font-size: 28px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.workshops-section .text p {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

.workshops-section .image {
  flex: 1;
  padding: 20px;
  text-align: center;
  position: relative;
}

.workshops-section .image img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .workshops-section .row {
    flex-direction: column;
  }
  .workshops-section .row.reverse {
    flex-direction: column;
  }
  .workshops-section .text, 
  .workshops-section .image {
    padding: 10px;
  }
  .workshops-section .text h2 {
    font-size: 22px;
  }
  .workshops-section .text p {
    font-size: 14px;
  }
}

/* Image Slider */
.image{
    overflow: hidden;
}
.image .slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.image img {
  width: 100%; 
  flex-shrink: 0;
}

/* Arrows (hidden until hover) */
.image button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  display: none;
  border-radius: 50%;
}

.image:hover button {
  display: block;
}

.prev { left: 10px; }
.next { right: 10px; }

