/*Hero*/
.hero{
    position:relative;
    height:90vh;
    overflow:hidden;
}


.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1.5s ease;
}

.slide.active{
    opacity:1;
}

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

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-content{
    max-width:700px;
    background:rgba(0,0,0,.35);
    backdrop-filter:blur(6px);
    padding:45px;
    border-radius:15px;
    text-align:center;
    color:white;
}

.hero-content h1{
    font-size:58px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;
    line-height:1.6;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    padding:15px 35px;
    background:#1F5E3B;
    color:white;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;

}

.hero-btn:hover{
    background:#2F7A50;
}

.scroll-down{
  position:absolute;
  bottom:60px;
  width:100%;
  text-align:center;
  color:white;
  font-size:12px;
  text-decoration:none;
  opacity:0.7;
  transition:opacity 0.3s ease, transform 0.3s ease;
  font-weight:bold;
}

.scroll-down i{
  display:block;
  font-size:14px;
}

.scroll-down:hover{
  opacity:1;
  transform:translateY(2px);
}


/*About section*/

.welcome{
  padding:120px 8%;
  background:#f8f8f8; 
}

.welcome-container{
  justify-content:space-between;
}

.welcome-container,
.production-container{
  display:flex;
  align-items:center;
  gap:60px;
  max-width:1200px;
  margin:auto;
}

.welcome-text{
  flex:1;
}

.welcome-text h2{
  font-size:42px;
  margin-bottom:20px;
  color:#1F5E3B; 
}

.welcome-text p{
  font-size:18px;
  line-height:1.7;
  margin-bottom:15px;
  color:#333;
}

.welcome-image{
  flex:0.8;
  text-align:center;
}

.welcome-image img{
  width:100%;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.caption{
  display:block;
  margin-top:10px;
  font-size:14px;
  color:#666;
}

.fade-in-section{
  opacity:0;
  transform:translateY(40px);
  transition:all 1s ease;
}

.fade-in-section.visible{
  opacity:1;
  transform:translateY(0);
}

/*Current Production section*/
.production{
  padding:120px 8%;
  background:#2B2B2B; 
  color:white;
}

.production-header{
  text-align:center;
  margin-bottom:60px;
}

.production-header h2{
  font-size:56px;
  margin-bottom:10px;
}

.production-sub{
  font-size:18px;
  color:#ccc;
}

.production-container{
  font-family: 'Playfair Display', serif;
}

/* Image */
.production-image{
  flex:1;
}

.production-image img{
  width:100%;
  border-radius:12px;
  box-shadow:0 15px 40px rgba(0,0,0,0.4);
}

/* Text */
.production-text{
  flex:1;
}

.production-text p{
  font-size:18px;
  line-height:1.7;
  margin-bottom:20px;
}

.dates{
  font-size:16px;
  color:#bbb;
  margin-bottom:25px;
}

/* Button */
.production-btn{
  display:inline-block;
  padding:14px 30px;
  background:#1F5E3B;
  color:white;
  text-decoration:none;
  border-radius:8px;
  transition:.3s;
}

.production-btn:hover{
  background:#2F7A50;
}


/*Little action cards*/

.get-involved{
  text-align:center;
  padding:100px 20px;
  padding-bottom:20px;
}

.cards{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
  margin-top:40px;
}

.card{
  background:white;
  padding:30px;
  width:280px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.card h3{
  margin-bottom:10px;
}

.card p{
  font-size:14px;
  margin-bottom:20px;
}

.btn{
  display:inline-block;
  padding:10px 20px;
  background:#1F5E3B;
  color:white;
  text-decoration:none;
  border-radius:6px;
  font-size:14px;
}

.social-buttons{
  display:flex;
  gap:10px;
  justify-content:center;
}

/*Cute stat thing at the bottom*/
.quick-stats{
  display:flex;
  justify-content:center;
  gap:50px;
  padding:20px 20px;
  color: #4f4f4f;
  text-align:center;
}

.stat h3{
  font-size:24px;
  margin-bottom:5px;
}

.stat p{
  font-size:12px;
  opacity:0.7;
}


/*media*/
@media screen and (max-width: 768px) {
    .hero {
        height: 60vh;
    }

    .hero-content {
        padding: 25px 20px;
        margin: 0 15px;
    }

    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .scroll-down {
        bottom: 20px;
    }

    .welcome {
        padding: 50px 20px;
    }

    .welcome-container {
        flex-direction: column;
        gap: 30px;
    }

    .welcome-text h2 {
        font-size: 28px;
    }

    .welcome-text p {
        font-size: 15px;
    }

    .production {
        padding: 50px 20px;
    }

    .production-header {
        margin-bottom: 30px;
    }

    .production-header h2 {
        font-size: 32px;
    }

    .production-sub {
        font-size: 15px;
    }

    .production-container {
        flex-direction: column;
        gap: 30px;
    }

    .production-text p {
        font-size: 15px;
    }

    .get-involved {
        padding: 50px 20px;
    }

    .cards {
        gap: 20px;
    }

    .card {
        width: 100%;
        max-width: 320px;
    }

    .card:hover {
        transform: none;
    }

    .quick-stats {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }
}