@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  background: #fff;
}

nav {
  background-color: hsl(180, 56%, 98%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: relative;
}

.logo img {
  width: 140px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.navicon {
  display: none;
}

@media (max-width: 840px) {
  .navicon {
    display: block;
    width: 30px;
    cursor: pointer;
    z-index: 1001;
  }

  nav ul {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    background: gray;
    z-index: 100;
    width: 150px;
    padding: 90px;
    height: 40vh;
    transition: 0.5s;
  }

  @media (max-width: 140px) {
  nav ul li {
    margin: 12px 0;
    
  }
}

  .hide-mobile-menu {
    right: -220px; /* Hide menu off-screen */
  }
}





/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 120vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(247, 243, 243);
}

/* Fullscreen Video Background */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(250, 248, 248); /* Dark overlay */
  z-index: 2;
}
/* Button Group (Sound + Play/Pause) */
.button-group {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.play-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #161616;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.play-btn:hover {
  background: #ffd633;
  transform: scale(1.05);
}

/* Optional dark overlay for readability */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(68, 64, 64, 0.897);
  z-index: 2;
}

/* Hero Text Content */
.hero-text {
  position: absolute;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.hero-text h1 {
  font-size: 60px;
  font-weight: 600;
  color: rgb(247, 238, 238);
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin: 10px auto 20px;
}

/* CTA Button */
.btn {
  background-color: #e7c129;
  color: #030303;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition:  0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: #dddd4a;
  transform: scale(1.05);
}

.gallery-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  padding: 0 5%;
}

/* Left Image */
.gallery-image {
  flex: 1 1 45%;
}

.gallery-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Right Text */
.gallery-text {
  flex: 1 1 50%;
  text-align: left;
}

.gallery-text h4 {
  font-size: 24px;
  color: #000f38;
  margin-bottom: 15px;
}

.gallery-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.button-wrapper {
  text-align: center;
  margin-top: 40px;
}


.small-btn {
  font-size: 14px;
  padding: 8px 16px;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  filter: invert(1);
  transition: transform 0.3s ease;
}

.btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* Optional Light Version */
.light-btn {
  background-color: #a4a553;
  color: #333;
}

.light-btn:hover {
  background-color: #a0a557;
}


/* Responsive Design */
@media (max-width: 850px) {
  .hero-text h1 {
    font-size: 40px;
  }
}

@media (max-width: 650px) {
  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .button-group {
    flex-direction: column;
    gap: 8px;
    bottom: 60px;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Accessibility Focus State */
a:focus,
.play-btn:focus,
.btn:focus {
  outline: 2px dashed #ffcc00;
  outline-offset: 4px;
}

/* Optional Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #ffcc00;
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}


@media (max-width: 768px) {
  .gallery-block {
    flex-direction: column;
    text-align: center;
  }

  .gallery-image,
  .gallery-text {
    flex: 1 1 100%;
  }

  .gallery-text {
    text-align: center;
  }
}
