body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0;
  overflow-x: hidden; /* ✅ Hide horizontal overflow */
}
header {
  background-color: #c00000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header img {
  height: 50px;
  border-radius: 0%;
}

.header-text {
  color: white;
  font-size: 18px;
  margin-right: 20px;
  text-decoration: none;
}


.header-button {
  background-color: white;
  color: #c00000;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none; /* <-- important for <a> */
  display: inline-block;
}


.header-button:hover {
  background-color: #e00000;
  color: white;
}


.hero {
  background: url('../images/hero-image.jpg') no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
  border-bottom: 5px solid #c00000;
}


.news-heading {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}



.section-subtitle {
  font-size: 35px;
  color: #c00000;
  font-weight: bold;
  text-align: center;
  margin: 40px 0 30px;
}


.news {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: nowrap;
  padding: 0 40px 40px;
/*  border-top: 5px solid #c00000; */
  border-bottom: 5px solid #c00000;
}

.news-card {
  width: 450px;
  text-align: center;
  flex-shrink: 0;
}

.news-card iframe {
  width: 100%;
  height: 300px;
  border-radius: 8px;
}



.news-card:hover {
  transform: scale(1.05);  /* optional: slightly grow on hover */
}

.news-card img {
  width: 100%;
  height: auto;           /* makes image taller */
  object-fit: cover;

  transition: transform 0.3s ease;
}


.news-card h4 {
  font-size: 18px;         /* makes text larger */
  margin-top: 12px;
  font-weight: bold;
}


.booking {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  background-color: #f5f5f5;
}
.booking-right {
  flex: 1 1 300px;
  padding: 20px;
  background: white;
  margin: 10px;
  border-radius: 8px;
}
.booking-right h2 {
  margin-top: 0;
  text-align: center;
}
.calendar {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

.calendar iframe {
  width: 100%;
  height: 800px;
  border: none;
  border-radius: 8px;
}


.ribbon {
  position: absolute;
  background-color: #c00000;
  color: white;
  top: -10px;
  right: -10px;
  padding: 5px 10px;
  transform: rotate(45deg);
  font-size: 12px;
}

.studio-offers {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
  border-top: 4px solid #c00000;
}

.studio-offers h2 {
  font-size: 26px;
  color: #c00000;
  margin-bottom: 30px;
}

.offer-category {
  margin-bottom: 40px;
}

.offer-category h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #333;
}

.offer-logos {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: nowrap; /* prevents wrapping */
}


.offer-logos img {
  width: 100%;        /* fixed width that works well on desktops */
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}



.offer-logos img:hover {
  transform: scale(1.1);
}






.section-about {
  background-color: #f4f4f4;
  padding: 40px 0;
  text-align: center;
/*  margin-bottom: 20px; */

}

.section-about h1 {
  font-size: 22px;
  color: #222;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.5;
}

.social-media-links a {
  font-size: 30px;
  margin: 0 10px;
  color: #c00000;
  transition: transform 0.3s ease;
}

.social-media-links a:hover {
  transform: scale(1.2);
  color: #800000;
}




.map-fullscreen {
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
/*border-top: 5px solid #c00000; */
  border-bottom: 5px solid #c00000;
}

.map-fullscreen iframe {
  width: 100%;
  height: 600px; /* Adjust height as needed */
  border: none;
  display: block;
  text-align: center;
}




.map-heading {
  font-size: 26px;
  margin-bottom: 20px;
  color: #c00000;
  text-align: left;
  padding-left: 100px;

}





.custom-footer {
  position: relative;
  background-color: #c70202;
  color: white;
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
  position: relative;
}

.footer-contact h4 {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-contact p {
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #ffffff33;
  z-index: 1;
  position: relative;
}

.footer-watermark {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
}

.footer-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  margin-top: 20px;
  z-index: 1;
}

.footer-icons a img {
  max-width: 100%;            /* allows natural size, but constrained if too big */
  height: auto;               /* maintain aspect ratio */
  opacity: 0.9;
  transition: transform 0.2s;
}

.footer-icons a img:hover {
  transform: scale(1.1);
}


@media (max-width: 900px) {
  .offer-logos {
    flex-wrap: wrap; /* allow wrapping only on smaller screens */
    justify-content: center;
  }

  .offer-logos img {
    width: 90%; /* scale down images for small screens */
  }
}

@media (max-width: 900px) {
  .news {
    flex-wrap: wrap;
  }

  .news-card {
    width: 90%;
  }

  .news-card iframe {
    height: 240px; /* Taller on mobile for better viewing */
  }
}













/* Lightbox overlay */
#lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

#lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  font-weight: bold;
}



.news {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    padding: 1.5rem;
}
.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    padding: 1rem;
}
.news-card h4 {
    margin: 0 0 0.75rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0D1F3C;
}
.news-card iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 8px;
    display: block;
}
@media (max-width: 1100px) {
    .news { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .news { grid-template-columns: 1fr; }
}
