* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-orange: #ff6b35;
  --text-black: #000000;
  --text-white: #ffffff;
  --bg-white: #ffffff;
  --bg-light: #f5f5f5;
  --footer-black: #1a1a1a;
  --transition: all 0.3s ease;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-white);
  color: var(--text-black);
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* ===== ANIMATIONS ===== */
/* Added new animations for fade-in effects */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes scaleUp {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Animation classes for triggering on scroll */
.fade-in-left {
  animation: slideInLeft 0.8s ease forwards;
}

.fade-in-right {
  animation: slideInRight 0.8s ease forwards;
}

.fade-in-up {
  animation: slideInUp 0.8s ease forwards;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background-color: var(--bg-white);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.header-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
}

.header-title:hover {
  transform: scale(1.05);
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--text-black);
  font-weight: 500;
  font-size: 14px;
  position: relative;
  transition: var(--transition);
  padding: 5px 0;
}

nav a.active,
nav a:hover {
  color: var(--primary-orange);
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-orange);
  transition: var(--transition);
}

nav a.active::after,
nav a:hover::after {
  width: 100%;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}
.social-icons i {
  font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}
.social-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  font-size: 18px;
  text-decoration: none;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-orange);
  color: var(--bg-white);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-black);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}


/* ===== BANNER/HERO ===== */

.banner-section {
  width: 100%;
  position: relative;   /* <-- FIX */
}


.banner {
  width: 100%;
  height: 500px;
  background-image: url("./public/banner1.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: scaleUp 0.8s ease;
}

/* REMOVE any overlays created via pseudo-elements */

.banner-content {
  text-align: center;
  color: var(--text-white);
  z-index: 2;
  animation: slideInUp 0.8s ease;
}

.banner-title {
  font-size: 56px;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 20px;
  text-shadow: none; /* Remove black shadow if you want */
  letter-spacing: 3px;
}

.banner-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  justify-content: center;
  animation: slideInUp 1s ease;
  z-index: 3;
}

.banner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--text-white);
  cursor: pointer;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.banner-dot.active {
  background-color: var(--primary-orange);
  transform: scale(1.3);
  animation: pulse 1s infinite;
}


/* ===== MAIN CONTENT SECTIONS ===== */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-section,
.section-container,
main section {
  scroll-margin-top: 120px; /* adjust based on header height */
}
.section-container {
  padding: 60px 0;
}

.page-section {
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}

.page-section.alternate {
  background-color: var(--bg-light);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 50px;
  text-align: center;
  animation: slideInUp 0.6s ease;
}

.content-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}

.content-section.reverse {
  direction: rtl;
}

.content-section.reverse > * {
  direction: ltr;
}

.section-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
  transition: var(--transition);
}

.section-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.25);
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.section-image:hover img {
  transform: scale(1.05);
}

.section-text {
  animation: slideInRight 0.8s ease;
}

.section-text h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 20px;
}

.section-text p {
  font-size: 15px;
  color: var(--text-black);
  margin-bottom: 18px;
  line-height: 1.8;
}

/* ===== GALLERY PAGE ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.gallery-item {
  aspect-ratio: 1;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  background-color: var(--bg-light);
  animation: scaleUp 0.6s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: "🔍";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 32px;
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 800px;
  max-height: 80vh;
  border-radius: 8px;
  object-fit: contain;
  animation: scaleUp 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--text-white);
  font-size: 40px;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition);
  z-index: 2001;
}

.lightbox-close:hover {
  color: var(--primary-orange);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  color: var(--text-white);
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition);
  z-index: 2001;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.lightbox-nav:hover {
  background-color: var(--primary-orange);
  transform: scale(1.2);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ===== VIDEOS PAGE ===== */
.thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.video-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: slideInUp 0.6s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.video-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background-color: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-black);
  line-height: 1.4;
  padding: 0 12px 12px;
}
 .video-title {
    display: none;
}
/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 600px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: slideInUp 0.8s ease;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--text-black);
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  transition: var(--transition);
  background-color: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
  background-color: #fffaf5;
}

.submit-btn {
  background-color: var(--primary-orange);
  color: var(--text-white);
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  background-color: #e55a1f;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--footer-black);
  color: var(--text-white);
  padding: 50px 20px;
  text-align: center;
  animation: slideInUp 0.8s ease;
}

footer h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary-orange);
}

.footer-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 25px;
}

.footer-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  text-decoration: none;
  font-size: 18px;
  transition: var(--transition);
}

.footer-icon:hover {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.footer-contact {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.8;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-contact a {
  color: var(--text-white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--primary-orange);
  text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-image {
    max-width: 100%;
    order: -1;
  }

  .content-section.reverse {
    direction: ltr;
  }

  .content-section.reverse .section-image {
    order: 1;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eee;
    z-index: 999;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  nav a::after {
    display: none;
  }

  nav a.active {
    background-color: rgba(255, 107, 53, 0.1);
    padding-left: 10px;
    color: var(--primary-orange);
  }

  .header-title {
    font-size: 22px;
  }

  .banner-title {
    font-size: 36px;
  }

  .banner {
    height: 350px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .section-text h3 {
    font-size: 22px;
  }

  .content-section {
    gap: 30px;
  }

  .lightbox-image {
    max-width: 95vw;
    max-height: 70vh;
  }

  .lightbox-nav {
    font-size: 24px;
  }

  .section-container {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .header-title {
    font-size: 18px;
    letter-spacing: 1px;
  }

  nav a {
    font-size: 13px;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .banner {
    height: 250px;
  }

  .banner-title {
    font-size: 24px;
  }

  main {
    padding: 0 15px;
  }

  .section-container {
    padding: 30px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .section-text h3 {
    font-size: 18px;
  }

  .section-text p {
    font-size: 13px;
  }

  .content-section {
    gap: 20px;
  }

  .contact-form {
    margin: 20px 0;
  }

  footer {
    padding: 30px 15px;
  }

  footer h3 {
    font-size: 16px;
  }

  .footer-contact {
    font-size: 12px;
  }

  .footer-contact p {
    margin-bottom: 8px;
  }
}
