/* General */
body {
  font-family: 'Montserrat', 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}
h1, h2, h3 {
  margin-top: 0;
  font-weight: 600;
}

/* Header */
header {
  background: #002868; /* blue */
  color: white;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
}
header nav a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
  font-weight: bold;
  transition: color 0.3s ease;
}
header nav a:hover {
  color: #ffcccb;
}
header nav .book-nav {
  background: #bf0a30; /* red */
  padding: 8px 12px;
  border-radius: 4px;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),
  url('images/background.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.book-btn {
  display: inline-block;
  background: #bf0a30; /* red */
  color: white;
  padding: 15px 25px;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
  margin-top: 15px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.book-btn:hover {
  background: #ff4d4d;
  transform: scale(1.05);
}
.book-btn.large {
  font-size: 1.5rem;
  padding: 18px 30px;
}

/* Sections */
.section {
  padding: 60px 20px;
  text-align: center;
}
.section h2 {
  font-size: 2rem;
  color: #002868;
  margin-bottom: 30px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}
.service-icon {
  color: #bf0a30;
  margin-bottom: 10px;
}
.gallery-grid figure {
  margin: 0;
}
.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.gallery-grid figcaption {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #555;
}

/* Contact Section */
.contact-box {
  max-width: 500px;
  margin: 0 auto;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: left;
}
.contact-box p {
  margin: 10px 0;
}
.contact-box i {
  color: #bf0a30;
  margin-right: 8px;
}

/* Booking Section */
.booking {
  background: #002868;
  color: white;
}
.booking .book-btn {
  background: #bf0a30;
}

/* Footer */
footer {
  background: #002868;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
  header .container {
    flex-direction: column;
  }
  header nav a {
    display: inline-block;
    margin: 5px;
  }
  .hero h2 {
    font-size: 2rem;
  }
}

/* Animation base */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;              /* fixed height for uniform look */
  object-fit: cover;          /* crop nicely */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}


/* logo */

header .logo img {
  height: 60px;   /* adjust size */
  width: auto;    /* keep aspect ratio */
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
