/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* prevents sideways scrolling */
}
/* Navbar */
header {
  background: #ffffffcc;
  backdrop-filter: blur(8px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 80px;
}

.logo img {
  height: 55px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 60px;
}

.nav-links a {
  text-decoration: none;
  color: #002b5b;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #d4af37;
}
/* Hamburger Icon */
.menu-toggle {
  display: none;
  font-size: 30px;
  color: #002b5b;
  cursor: pointer;
}

/* Mobile Navigation */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
  display: none;
  flex-direction: column;
  background: #ffffff;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  box-shadow: 0 5px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }
}
/* Hero Section */
.hero {
  width: 100%;
  min-height: calc(100vh - 80px);
  background: url('boat.jpg') center center / cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: 0;
}
.hero-overlay {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
 
}

.hero h1 {
  font-size: 48px;
  color: #fefefe;
}

.hero p {
  margin: 15px 0 25px;
  font-size: 20px;
  color: #dcdcdc;
}

.btn {
  background: linear-gradient(45deg, #002b5b, #d4af37);
  color: #fff;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}

.btn:hover {
  background: linear-gradient(45deg, #d4af37, #002b5b);
  transform: scale(1.05);
}

/* About Section */
.about {
  text-align: center;
  padding: 80px 15%;
  background: #f7f9fc;
  color: #002b5b;
}

.about h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #d4af37;
}

.about p {
  line-height: 1.6;
  font-size: 18px;
}

/* Contact Section */
.contact {
  text-align: center;
  padding: 60px 15%;
  background: #002b5b;
  color: #fff;
}

.contact h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #d4af37;
}

/* Footer */
footer {
  background: #001a33;
  color: #ccc;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn {
    padding: 10px 22px;
  }
}
/* Contact Page Hero */
.contact-hero {
  height: 110vh;
  background: url('royal1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-page {
  text-align: center;
  padding: 80px 15%;
  background: #f7f9fc;
}

.contact-page h2 {
  font-size: 32px;
  color: #002b5b;
  margin-bottom: 15px;
}

.contact-page p {
  color: #555;
  font-size: 18px;
  margin-bottom: 40px;
}

/* Contact Container */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.contact-info, .contact-form {
  flex: 1 1 45%;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-info h3, .contact-form h3 {
  color: #002b5b;
  margin-bottom: 20px;
}

.contact-info p {
  line-height: 1.8;
  color: #333;
}

/* Form Styling */
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: #002b5b;
}

/* ✅ Mobile Navbar Optimization */
@media (max-width: 900px) {
  .navbar {
    flex-direction: row; /* keep logo + hamburger inline */
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
  }

  .logo img {
    height: 40px;
    margin: 0;
  }

  .menu-toggle {
    display: block;
    font-size: 26px;
    color: #002b5b;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }
}

/* ✅ For Small Phones (under 480px) */
@media (max-width: 480px) {
  header {
    padding: 0;
  }

  .navbar {
    padding: 6px 10px;
  }

  .logo img {
    height: 36px;
  }

  
  @media (max-width: 480px) {
  .hero {
    width: 100%;
    min-height: 100vh;
    padding: 40px 15px;
    background: url('boat.jpg') center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 15px;
    margin: 10px 0 20px;
  }

  .btn {
    padding: 10px 20px;
  }
}