@import url("style.css");
/* ----------------     FILM FAN PAGE SPECIFIC STLYES     ----------------- */


/* ----------------      HERO BANNER VIDEO STYLES      ----------------- */

.hero-banner-content{
    position: relative;
}

.hero-banner-content h1{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 4rem;
    font-size: 3rem;
    margin: 0;
    text-transform: uppercase;
}


.hero-banner-content img{
   max-height: 200px;
}

.film-fan-banner{
    position: relative;
    width: 100%;
    height: 75vh;
    background-image: url('../images/film-fan-img.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* ----------------      SECTION 3 STYLING      ----------------- */

/* Parent container styling */
.audience-cards-container {
  display: grid;
  gap: 20px; /* Spacing between cards */
  padding: 20px;
}

/* Card styling */
.audience-card {
  background: var(--gray); /* Dark background */
  color: #fff; /* Light text */
  border-radius: 26px; /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow */
  display: flex;
  flex-direction: column;
 
  
}

.audience-card div{
    padding: 2rem;
}

/* Image styling */
.audience-card img {
  max-width: 100%;
  border-radius: 26px; 
  margin-bottom: 15px; /* Space between image and text */
  object-fit: cover; /* Ensure image fits nicely */
  box-shadow: 0 0 15px var(--neutral-black), 0 0 15px var(--neutral-black);
}

/* Heading and text styling */
.audience-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  max-width: 300px;
  margin-top: 0;
  text-transform: uppercase;
}

.audience-card p {
  font-size: 1rem;
  line-height: 1.5;
}




/* ----------------      SECTION 5 STYLING      ----------------- */

.offer-ticket{
    margin: 3rem 0;
}

/* Offer banner container */

.offer-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--white);
    border-radius: 26px;
    max-width: 800px;
    position: relative;
    box-shadow: 0 0 10px 2px var(--yellow);
    margin: 0 auto;
  
    /* Smoother glow animation */
    animation: smooth-glow 3s infinite ease-in-out;
  }
  
  /* Keyframes for smooth glowing effect */
  @keyframes smooth-glow {
    0% {
      box-shadow: 0 0 10px 2px var(--yellow);
    }
    50% {
      box-shadow: 0 0 20px 8px var(--yellow);
    }
    100% {
      box-shadow: 0 0 10px 2px var(--yellow);
    }
  }
  
  
  
  .offer-left {
    text-align: center;
    border-right:2px dashed var(--white); 
  }
  
  .offer-left p {
    font-size: 2rem;
    margin:2rem 0;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .offer-left p span {
    color: var(--yellow); 
    font-size: 4rem;
  }
  
  
  .offer-right {
    text-align: center;

  }
  
  .offer-right p {
    margin: 0 0 10px;
    font-size: 1rem;
    text-transform: uppercase;
  }
  
  .copy-button {
    background-color: var(--yellow);
    color: var(--neutral-black);
    border: none;
    border-radius: 26px;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .copy-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px var(--yellow);
  }




/* ----------------      SECTION 6 STYLING      ----------------- */

  .follow-section {
    display: grid;
    gap: 5rem;

  }


  .filmmaker-card img {
    width: 100%;
    height: auto;
    border-radius: 26px;
    margin: 10px 0;
  }

  .filmmaker-card h4{
    color: var(--pyralume-red);
  }
  
  .filmmaker-card div:nth-child(1){
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .filmmaker-card div:nth-child(2){
    position: relative;
  }
  
  .btn-position{
    position: absolute;
    bottom:0;
    right: -15px;
  }

/* ----------------      SECTION 7 STYLING      ----------------- */
.festivals-grid{
    display: grid;
    gap:2rem;

}
.festival-card{
    position: relative;
    background: linear-gradient(to bottom, var(--neutral-black), var(--pyralume-red));
    padding: 2rem;
    border-radius: 8px;
}

.festival-explore{

  text-align: center;
  margin-top: 2.5rem;
}

h5{
    font-size: 1.1rem;
}

/* ----------------      SECTION 8 STYLING      ----------------- */
.marketing-video .video{
  
    margin: 0 auto;
    box-shadow: 0 2px 20px var(--pyralume-red);
    
}


/* ----------------     FILMMAKER PAGE SPECIFIC STLYES     ----------------- */



.filmmaker-banner{
    position: relative;
    width: 100%;
    height: 75vh;
    background-image: url('../images/filmmaker-img.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}



/* ----------------     FILM FEST PAGE SPECIFIC STLYES     ----------------- */


.film-fest-banner{
    position: relative;
    width: 100%;
    height: 75vh;
    background-image: url('../images/film-festival-img.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* .audience-card:nth-child(5){
    grid-column: 1/3;
} */

/* ----------------    INDUSTRY PARTNER PAGE SPECIFIC STLYES     ----------------- */
.industry-partner-banner{
    position: relative;
    width: 100%;
    height: 75vh;
    background-image: url('../images/industry-partner-img.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.industry-dropdown-section {
  width: 100%;
  margin-bottom: 6rem;
}

.industry-dropdown-item {
  border-bottom: 1px solid var(--gray);
  margin-bottom: 10px;
  background-color: var(--gray);
  border-radius: 4px;
  overflow: hidden;
}

.industry-dropdown-button {
  width: 100%;
  text-align: left;
  background-color: var(--gray);
  color: var(--white);
  border: none;
  padding: 15px;
  font-size: 1.1rem;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s, color 0.3s;
  display: flex;
  align-items: center;
}

.industry-dropdown-button:hover {
  background-color: var(--dark-red);
  color: var(--yellow);
}

.industry-dropdown-content {
  display: none;
  padding: 10px;
  background-color: var(--neutral-black);
  color: var(--white);
  border-top: 1px solid var(--gray);
  font-size: 0.95rem;
}

.industry-dropdown-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.industry-dropdown-content li {
  margin-bottom: 8px;
  line-height: 1.5;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px; /* Space for icons */
}

.industry-dropdown-content li:last-child {
  margin-bottom: 0;
}

.industry-dropdown-item.active .dropdown-content {
  display: block;
}

/* Icon styling (optional, for alignment) */
.industry-dropdown-content li i {
  color: var(--yellow);
  font-size: 1.2rem;
}

/* ----------------      DESKTOP STYLING      ----------------- */
@media (min-width: 720px) {
    .audience-cards-container {
      grid-template-columns: repeat(2,1fr);
      margin-bottom: 3rem;
    }

    .pricing-section-content div{
        
        flex-direction: row;
        
    }

    .offer-banner{
        gap: 4rem;
    }

    .offer-left {
        padding-right: 3rem;
    }

    .offer-right{
        padding-left: 2rem;
    }

    .follow-section {
        grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
      }

    .festivals-grid{
        grid-template-columns: repeat(3,1fr);
    }

    
}
