/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f0f4ff;
  color: #222;
  line-height: 1.6;
}

/* Basic Header Style */
.header {
  background-color: #111c3a;
  color: #fff;
}

.header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Nav Links */
.nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* For mobile */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #111c3a;
    z-index: 999;
  }

  .nav ul {
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav.active {
    display: block;
    animation: slideDown 0.3s ease;
  }
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Hamburger button (hidden on big screens) */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Responsive part */
@media (max-width: 768px) {
  .nav {
    display: none; 
    position: absolute;
    top: 60px; 
    left: 0;
    width: 100%;
    background: #111c3a;
  }

  .nav ul {
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 1rem;
  }

  .menu-toggle {
    display: block; 
  }

  .nav.active {
    display: block; 
    animation: slideDown 0.3s ease;
  }
}

/* Simple animation */
@keyframes slideDown {
  from {opacity:0; transform:translateY(-10px);}
  to {opacity:1; transform:translateY(0);}
}


/* HERO VIDEO SECTION */
.Mid {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.Mid video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

.Mid-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 0 1rem;
}

.Mid-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 2rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

/* TOUR BUTTON WITH ANIMATION */
.tour-button {
  text-decoration: none;
  background: #f97979;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  border: 2px solid #fff;
  display: inline-block;
  transition: all 0.3s ease;

  /* Add pulsing animation */
  animation: pulse 2s infinite;
}

.tour-button:hover {
  background: #ff0000;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 87, 87, 0.8);
}

/* KEYFRAMES FOR PULSE */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* FOOTER */
footer {
  background: #333;
  color: #eee;
  padding: 2rem 1rem;
  text-align: center;
}

footer article {
  max-width: 800px;
  margin: auto;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Responsive nav for mobile */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    padding-top: 0.5rem;
  }

  nav ul li a {
    display: block;
    width: 100%;
  }
}
/* === FOOTER === */
footer {
  background-color: #002a53;          
  color: #eee;
  padding: 3rem 2rem;
  font-family: inherit;
}

/* newsletter section (top) */
footer .newsletter {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

footer .newsletter h4 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
}

footer .newsletter .subscribe-box {
  display: flex;
  border: 1px solid #444;
  border-radius: 50px;
  overflow: hidden;
}

footer .newsletter .subscribe-box input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  outline: none;
  background: transparent;
  color: #ccc;
}

footer .newsletter .subscribe-box button {
  background-color: #1e40af; /* blue */
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

footer .newsletter .subscribe-box button:hover {
  background-color: #2563eb;
}

/* separator line */
footer hr {
  margin: 2rem 0;
  border-color: #444;
}

/* columns below */
footer .footer-columns {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

footer .footer-columns img {
  width: 150px;
}

footer .footer-columns p {
  color: #999;
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.6;
}

footer .footer-columns h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

footer .footer-columns ul {
  list-style: none;
  padding: 0;
}

footer .footer-columns ul li a {
  display: block;
  color: #aaa;
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

footer .footer-columns ul li a:hover {
  color: #fff;
}

/* bottom text */
footer .bottom {
  text-align: center;
  margin-top: 2rem;
  color: #888;
  font-size: 0.8rem;
}

/* responsive newsletter for small devices */
@media (max-width: 768px) {
  footer .newsletter {
    grid-template-columns: 1fr;
    text-align: center;
  }
  footer .newsletter .subscribe-box {
    margin-top: 1rem;
  }
}
/* === ABOUT SECTION === */
.about {
  background: rgba(255,255,255,0.15);    
  backdrop-filter: blur(6px);            
  -webkit-backdrop-filter: blur(6px);    
  padding: 4rem 2rem;
  border-radius: 12px;                 
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 1rem;

  /* animation initial state */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
  animation-delay: 0.2s;
}

.about-text p {
  color: #000000; 
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;

  /* animation initial state */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
  animation-delay: 0.4s;
}

.about-image img {
  width: 100%;
  border-radius: 10px;

  /* animation initial state */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
  animation-delay: 0.6s;
}

/* keyframes for fade-up animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about {
    padding: 2rem 1rem;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }
}
