@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Lato', sans-serif;
  color: #212121;
  background: #fff;
  line-height: 1.6;
}

a { color: #1e6c93; text-decoration: none; }
a:hover { color: #006580; text-decoration: underline; }

/* Header / Hero */
.hero {
  background: linear-gradient(135deg, #1e6c93 0%, #226e93 50%, #184e6a 100%);
  color: #fff;
  text-align: center;
  padding: 80px 24px 60px;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Nav */
nav {
  background: #212121;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
}
nav li a {
  display: block;
  color: #fff;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 300;
  transition: background 0.2s;
}
nav li a:hover, nav li a.active {
  background: rgba(255,255,255,0.12);
  text-decoration: none;
}

/* Content */
.content {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px;
}

/* Section headings */
.section-title {
  font-size: 2rem;
  font-weight: 300;
  color: #1e6c93;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

/* Card grid for cruise hides */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
  background: #fff;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.card .card-label {
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 400;
  color: #1e6c93;
  text-align: center;
}

/* Single image page */
.single-image {
  text-align: center;
  margin: 24px 0;
}
.single-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Back link */
.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: #1e6c93;
}
.back-link:hover { text-decoration: underline; }

/* Contact */
.contact {
  margin-top: 40px;
  padding: 32px;
  background: #f2f2f2;
  border-radius: 8px;
  text-align: center;
}
.contact h2 {
  font-size: 1.4rem;
  font-weight: 400;
  color: #1e6c93;
  margin-bottom: 8px;
}
.contact a {
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: #212121;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 24px;
  font-size: 0.85rem;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 600px) {
  .hero { padding: 60px 16px 40px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .content { padding: 32px 16px; }
  nav li a { padding: 12px 14px; font-size: 0.85rem; }
  .section-title { font-size: 1.5rem; }
}
