/* ========== Global ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background: #f8f9fa;
  color: #333;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* ========== Header & Navbar ========== */
header {
  background: #004aad;
  color: #fff;
  padding: 15px 0;
  text-align: center;
}

header h1 {
  margin-bottom: 10px;
}

nav {
  display: flex;
  justify-content: center;
  background: #003580;
  flex-wrap: wrap;
}

nav a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

nav a:hover {
  background: #002b5c;
  color: #ffdd00;
}

nav a.active {
  background: #001f40;
  color: #ffdd00;
  border-radius: 6px;
}

/* ========== Gallery ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}
.lightbox:target {
  display: flex;
}

/* ========== Video ========== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.video-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  padding: 10px;
  text-align: center;
}
.video-card video {
  width: 100%;
  border-radius: 10px;
  outline: none;
}
.video-card h3 {
  margin-top: 10px;
  color: #004aad;
}

/* ========== Armada ========== */
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  padding: 15px;
  text-align: center;
  transition: transform 0.3s;
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}
.card:hover {
  transform: translateY(-5px);
}
.card h3 {
  color: #004aad;
  margin-bottom: 8px;
}

/* ========== Review ========== */
.review-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.review {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}
.review strong {
  display: block;
  margin-bottom: 8px;
  color: #004aad;
}

/* ========== Booking Form ========== */
form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  max-width: 600px;
  margin: auto;
}
form input, form select, form textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}
form button {
  background: #004aad;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}
form button:hover {
  background: #003580;
}

/* ========== Contact ========== */
.contact-info {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  margin-bottom: 20px;
}
.contact-info h3 {
  margin-bottom: 10px;
  color: #004aad;
}

/* ========== Footer ========== */
footer {
  background: #003580;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}
