/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans", sans-serif;
}

/* ---------- HEADER + NAV ---------- */



nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2% 6%;
}

nav img {
  width: 200px;
  max-width: 40vw;
}

.nav-links {
  flex: 1;
  text-align: right;
}

.nav-links ul {
  list-style: none;
}

.nav-links ul li {
  display: inline-block;
  margin: 0 12px;
  position: relative;
}

.nav-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
}

.nav-links ul li::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #fc3f40;
  display: block;
  margin: auto;
  transition: 0.5s;
}

.nav-links ul li:hover::after {
  width: 100%;
}

nav .fa {
  display: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

/*--------------FONTS------------*/

.tangerine-regular {
  font-family: "Tangerine", cursive;
  font-weight: 400;
  font-style: normal;
}

.tangerine-bold {
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-style: normal;
}

.neuton-extralight {
  font-family: "Neuton", serif;
  font-weight: 200;
  font-style: normal;
}

.neuton-light {
  font-family: "Neuton", serif;
  font-weight: 300;
  font-style: normal;
}

.neuton-regular {
  font-family: "Neuton", serif;
  font-weight: 400;
  font-style: normal;
}

.neuton-bold {
  font-family: "Neuton", serif;
  font-weight: 700;
  font-style: normal;
}

.neuton-extrabold {
  font-family: "Neuton", serif;
  font-weight: 800;
  font-style: normal;
}

.neuton-regular-italic {
  font-family: "Neuton", serif;
  font-weight: 400;
  font-style: italic;
}


/* ---------- HERO TEXT ---------- */
.text-box-index {
  width: 90%;
  color: #fc3f40;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.text-box-index h1 {
  font-size: clamp(28px, 6vw, 62px);
}

.text-box-index p {
  margin: 10px 0 40px;
  font-size: clamp(14px, 2vw, 18px);
  color: #fff;
}

.hero-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 34px;
  font-size: 14px;
  background: transparent;
  transition: 0.5s;
  border-radius: 4px;
  cursor: pointer; /* This makes the hand appear */
}

.hero-btn:hover {
  border-color: #fc3f40;
  background: #fc3f40;
}

/* ---------- ROW LAYOUT ---------- */
.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}



/* ---------- FOOTER ---------- */
.footer {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  background: #000;
}

.footer h4 {
  color: #fff;
  margin-bottom: 8px;
  font-weight: 800;
  font-size: 22px;
}

.footer p {
  color: #e0e0e0;
  font-size: 14px;
}

.icons .fab {
  color: #fc3f40;
  margin: 0 10px;
  font-size: 28px;
  cursor: pointer;
}

.footer .credit {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

.footer .icons a {
    color: #fff;          /* icon color */
    font-size: 32px;      /* size of icons */
    margin: 0 12px;
    display: inline-block;
    transition: color 0.3s;
    text-decoration: none;
}

.footer .icons a:hover {
    color: #fc3f40;       /* hover colour */
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  nav img {
    width: 160px;
  }
}

@media (max-width: 768px) {
  nav .fa {
    display: block;
    color: #fff;
    z-index: 100;
    position: relative;
  }
  nav .fa.fa-bars, nav .fa.fa-times {
    color: #fff;
    z-index: 10220;
    position: relative;
  }
  .nav-links {
    position: fixed;
    top: 0; right: -220px;
    width: 200px; height: 100vh;
    background: #fc3f40;
    padding: 40px 20px;
    transition: 0.5s;
    z-index: 1199;
    text-align: left;
  }
  .nav-links ul li {
    display: block;
    margin: 20px 0;
  }
  .about-col-first, .about-col {
    text-align: center;
    padding: 0;
  }
  .about-col-first h1 {
    text-align: center;
  }
}

@media (max-width: 500px) {
  .text-box-index h1 {
    font-size: 24px;
  }
  .text-box-index p {
    font-size: 14px;
  }
  .hero-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}


/* Prevent sideways scroll */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* stop horizontal scroll */
    background: #000;
}





/* --------------- What We Offer Page Header------------------- */
.what-we-offer {
    background: linear-gradient(to bottom, #1a1a1a, #111);
    padding: 80px 20px;
    font-family: "Noto Sans", sans-serif;
    color: #fff;
    text-align: center;
}

.offer-sub-header {
    height: 50vh;
    width: 100%;
    background-image: url('WebsiteImages/Flowers.jpg'); /* change to your backdrop */
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    font-size: 40px;
}

.what-we-offer h1{
  color:#fc3f40;
  padding-bottom: 1%;
  font-size: 50px;
}

.row{
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}

.what-we-offer h3{
  color:#ffffff;
}

.media-types {
  position: relative;
  flex-basis: 31%;
  border-radius: 10px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
  transition: transform 0.4s ease;
  min-height: 250px;    /* pick a number that fits your longest text */
  height: 100%;
}

/* Dark overlay by default */
.media-types::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);   /* black tint */
  border-radius: inherit;
  transition: background 0.4s ease;
  z-index: 0;
}

/* Bring text above overlay */
.media-types h3,
.media-types p {
  position: relative;
  z-index: 1;
  color: #fff;
  transition: color 0.4s ease;
}

/* Hover effects */
.media-types:hover::before {
  background: rgba(48, 44, 44, 0.795);  /* red tint */
}

.media-types:hover h3 {
  color: #000;   /* heading goes black */
}

.media-types:hover p {
  color: #fff;   /* paragraph stays white */
}

.media-types:hover {
  transform: translateY(-4px);
}

/* ----- Responsive fix for small screens ----- */
@media (max-width: 768px) {

  /* Make the container a single column and center it */
  .row {
    display: flex;                 /* use flex so it’s easy to center */
    flex-direction: column;        /* stack items vertically */
    align-items: center;           /* center them horizontally */
    gap: 20px;                     /* space between boxes */
    margin-top: 5%;
  }

  /* Let each card grow full width with a max width for nice edges */
  .media-types {
    width: 90%;                    /* almost full width */
    max-width: 400px;              /* stop it getting too wide on tablets */
    min-height: 250px;             /* keep your equal-height look */
  }
}


/*------------------- BOOKINGS---------------*/
.booking {
    background: linear-gradient(to bottom, #1a1a1a, #111);
    padding: 80px 20px;
    font-family: "Noto Sans", sans-serif;
    color: #fff;
    text-align: center;
}
.booking-sub-header {
  height: 50vh;
  width: 100%;
  background: url('WebsiteImages/Sunset.jpg') center/cover no-repeat;
  text-align: center;
  color: #fff;
  font-size: 40px;
}

.actor-day {
  background: linear-gradient(to bottom,#1a1a1a,#000);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans", sans-serif;
}

.actor-day h2 {
  font-size: 36px;
  color: #fc3f40;
  margin-bottom: 20px;
}

.actor-day p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 25px auto;
  line-height: 1.6;
}

.pay-button {
  display: inline-block;
  background-color: #fc3f40;
  color: #fff;
  font-size: 20px;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.pay-button:hover {
  background-color: #d93334;
}

.actor-day .terms {
  font-size: 14px;
  margin-top: 15px;
}

.actor-day .terms a {
  color: #fc3f40;
  text-decoration: underline;
}

.booking-form {
  max-width: 500px;
  margin: 60px auto;
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  color: #fff;
  text-align: left;
}

.booking-form h2 {
  color: #fc3f40;
  margin-bottom: 10px;
}

.booking-form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="number"] {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 6px;
  border: none;
}

.booking-form .checkbox-row {
  margin-top: 20px;
}

.booking-form .booking-btn {
  margin-top: 25px;
  background: #fc3f40;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.booking-form .booking-btn:hover {
  background: #d62c2d;
}

.actor-day-video {
  position: relative;
  width: 100%;
  max-width: 600px;     /* shrink the max width a bit */
  margin: 0 auto 30px;  /* center it */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  aspect-ratio: 16 / 9; /* modern way to keep video ratio */
}

.actor-day-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.booking-form select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 6px;
  border: none;
  background: #fff;
  color: #000;
  font-size: 16px;
}



/*-------------------Terms and Conditions---------------*/

.terms-conditions-sub-header {
  height: 50vh;
  width: 100%;
  background: url('WebsiteImages/Football.jpg') center/cover no-repeat;
  text-align: center;
  color: #fff;
  font-size: 40px;
}

.terms-conditions {
    background: linear-gradient(to bottom, #1a1a1a, #111);
    padding: 80px 20px;
    font-family: "Noto Sans", sans-serif;
    color: #fff;
    text-align: center;
}

.terms-conditions h2{
  font-size: 40px;
  color: #fc3f40;
}

.terms-conditions h3{
  font-size: 20px;
  text-align: left;
}

.terms-conditions p{
  font-size: 12px;
  text-align: left;
}



/* ---------------- Dropdown container ----------------*/
.dropdown {
  position: relative;
  display: inline-block;
}

/* Hide dropdown items by default */
.dropdown-content {
  display: none;
  position: absolute;
  background: #111;
  border-radius: 10px;
  top: 100%;
  left: 0;
  width: 200px;
  z-index: 10;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

/* Dropdown links */
.dropdown-content li {
  display: block;
  padding: 10px 0;
}

.dropdown-content a {
  color: #fff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #fc3f40;
}

/* Show dropdown on hover */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}

/* Optional – little down arrow spacing */
.dropdown a i {
  margin-left: 6px;
  font-size: 0.8em;
}

.dropdown > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

@media (max-width: 768px) {
  .dropdown-content {
    position: static;
    transform: none;
    background: none;
    display: none;
    text-align: center;
  }

.dropdown-content.show {
  display: block;
  position: static;
  box-shadow: none;
  background: none;
}

  .dropdown-content a {
    padding: 8px 0;
    color: #fff;
  }
}

/* Dropdown arrow styling */
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center; /* Centers text and arrow nicely */
}

/* Optional: make arrow rotate when open */
.dropdown-toggle i {
  transition: transform 0.3s ease;
}

.dropdown-content.show ~ .dropdown-toggle i {
  transform: rotate(180deg);
}


.dropdown-toggle i.rotated {
  transform: rotate(180deg);
}

.dropdown-content li a:hover {
  background: #fc3f40;
}


.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #070707 100%);
  z-index: 1;
  pointer-events: none; /* 🔥 THIS FIXES IT */
}




/* ===== Universal Page Header ===== */

/* ===== Universal Page Header ===== */

.page-header {
  position: relative;
  height: 30vh;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #fff;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    #070707 100%
  );
  z-index: 1;
}


.page-header nav{
  position: relative;
  z-index: 11;
}

.page-header h1{
  text-align:center;
  z-index: 2;
  font-size: 50px;
  color: #ffffff;
}

/* ===== Universal Page Background ===== */

.page-content {
  background: linear-gradient(to bottom, #070707, #000000);
  padding: 80px 20px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-content {
  flex: 1;
}
