/* Base Styles */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-image: linear-gradient(blue, yellow);
  color: #333;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  section {
    padding: 15px;
    text-align: center;
  }

  h1 {
    font-size: 2rem; /* around 32px */
    line-height: 1.2;
  }

  h2 {
    font-size: 1.5rem; /* around 24px */
    line-height: 1.3;
  }

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

  img,
  video,
  iframe {
    max-width: 100%;
    height: auto;
  }

  section main {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
  }

  header ul {
    flex-direction: column;
    align-items: center;
  }

  header ul li {
    margin: 10px 0;
  }
}

/* Header */
.header {
  background: linear-gradient(90deg, rgb(1, 1, 26), gray);
  text-align: center;
  position: fixed;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.logo {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(90deg, #f12711, #f5af19);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin: 0;
}

.tagline {
  margin-top: 10px;
  font-size: 18px;
  color: #777;
}

/* Sections */

section h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 20px;
  text-align: center;
}

/* About */
.about p {
  text-align: center;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* Gallery */
.gallery .images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 50px 50px;
  background: rgb(36, 37, 2);
  box-shadow: 5px 5px 5px 8px rgb(247, 245, 245);
  border-radius: 40%;
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.226);
}
.gallery img:hover {
  transition: all 2s;
  width: 70%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.226);
}
/* Contact */
.contact h2 {
  color: #e6d8fa;

  font-size: 30px;
}
.contact p {
  font-size: 18px;
  text-align: center;
  margin: 10px 0;
}

.contact a {
  color: #1a0436;
  text-decoration: none;
  font-weight: 600;
  font-size: 40px;
}

.contact a:hover {
  color: #3aa0ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 30px;
  transition: all 1s;
}
/* Footer */
footer {
  background: linear-gradient(gray, rgb(5, 5, 37));
  color: #fff;
  text-align: center;

  font-size: 14px;
}

/* Welcome Section */
/* Reset margin/padding if needed */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Welcome section just under header */
.welcome {
  position: relative;
  width: 100vw; /* Full width of viewport */
  height: 500px; /* Custom height */
  overflow: hidden;
}

/* Video background fits section */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* Dark overlay over video */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.6)
  );
  z-index: 2;
}

/* Welcome text centered vertically */
.welcome-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.welcome-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.welcome-content p {
  font-size: 18px;
}

/* Gradient Highlight Text */
.highlight {
  background: linear-gradient(90deg, #f12711, #f5af19);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animations */
.fade-in {
  animation: fadeIn 1.5s ease-out forwards;
  opacity: 0;
}

.slide-up {
  animation: slideUp 1.5s ease-out forwards;
  opacity: 0;
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Highlighted text */
.highlight {
  background: linear-gradient(90deg, #f12711, #f5af19);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Explore Button */
.explore-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background: #f12711;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.3s ease;
  animation: fadeIn 1.5s ease-out forwards;
  animation-delay: 1.2s;
  opacity: 0;
}

.explore-btn:hover {
  background: #d6140f;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}
