/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header */
.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5vw;
  background-color: #000;
  color: #fff;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

/* Company Name Styling */
.company-name {
  font-size: 2.5rem; /* Increase font size */
  font-weight: bold;
  font-family: 'Poppins', sans-serif; /* Use a modern sans-serif font */
  background: linear-gradient(90deg, #d4af37, #bf9b30); /* Gold gradient */
  -webkit-background-clip: text; /* Clip the gradient to the text */
  -webkit-text-fill-color: transparent; /* Remove fill color */
  text-transform: uppercase; /* Make the text uppercase */
}

.logo {
  height: 50px;
  width: auto;
  margin-right: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(255, 193, 7, 0.6);
}

.company-name {
  font-size: 1.8rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Menu */
.menu {
  display: flex;
  gap: 10px;
}

.menu-button,
.dropdown-button {
  background: #ffc107;
  color: black;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 25px;
  font-size: 1rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.menu-button:hover,
.dropdown-button:hover {
  background: #e0a806;
  box-shadow: 0 4px 8px rgba(255, 193, 7, 0.5);
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000;
  color: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  z-index: 1000;
}

.dropdown-content a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 10px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #e0a806;
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hamburger Menu: Responsive */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  background: #ffc107;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background-color: #000;
    position: absolute;
    top: 70px;
    right: 5vw;
    width: 90vw;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
  }

  .menu.show {
    display: flex;
  }

  .dropdown-content {
    position: static;
    width: 100%;
  }

  .logo {
    height: 40px;
  }

  .menu-toggle {
    display: flex;
  }
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #001f3f, #001a33);
  color: white;
  min-height: 100vh;
  margin: 0;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.belt {
  width: 100%;
  background-color: #112d4e; 
  padding: 10px 0;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.page-title {
  font-size: 2.5rem;
  color: #f9f7f7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  width: 100%;
  max-width: 1200px;
}

/* Card Styles */
.card {
  background-color: #1b262c;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  height: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative; /* Make sure the belt is positioned correctly */
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure images stretch to fill the card */
}

/* Card Title (Belt) */
.card-title {
  position: absolute; /* Position belt at the bottom of the image */
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Transparent black belt */
  color: #ffc107; /* Yellow text color */
  text-align: center;
  padding: 10px 0; /* Padding for the text inside the title */
  font-size: 1.2rem;
  font-weight: bold;
  z-index: 2; /* Ensure belt is above the image */
  margin: 0; /* Remove any unwanted margin */
  line-height: normal; /* Ensure no extra height is added */
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.5); /* Add a subtle shadow for the belt */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card {
    height: 350px;
  }

  .card-title {
    font-size: 1rem;
    padding: 8px 0;
  }
}

@media (max-width: 480px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .card {
    height: 300px;
  }

  .card-title {
    font-size: 0.9rem;
    padding: 6px 0;
  }
}

/* How to Book Section Styling */
.steps-to-book {
  background: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
  font-family: "Arial", sans-serif;
}

.steps-container {
  max-width: 1200px;
  margin: 0 auto;
}

.steps-intro {
  font-size: 1rem;
  color: #ffd700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.steps-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  text-align: center;
}

.step-icon {
  font-size: 3rem;
  color: #000;
  margin-bottom: 10px;
}

.step p {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

.arrow {
  font-size: 2rem;
  color: #000;
}

@media (max-width: 768px) {
  .steps-grid {
    flex-wrap: wrap;
    gap: 30px;
  }

  .arrow {
    display: none;
  }
}

/* Footer */
.footer {
  background: linear-gradient(145deg, #0c0b30, #12142a);
  color: #fff;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.footer-section h3 {
  color: #ffd700;
  margin-bottom: 10px;
  font-size: 1.3rem;
  text-transform: uppercase;
}

/* Social Media Section */
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.5rem;
  color: #fff;
  background: #444;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.social-icons a:hover {
  background: #ffd700;
  color: #12142a;
}

.contact-info p {
  margin: 5px 0;
  color: #ccc;
}

.contact-info a {
  color: #ffd700;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.quick-links ul {
  list-style: none;
  padding: 0;
}

.quick-links ul li {
  margin: 5px 0;
}

.quick-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.quick-links ul li a:hover {
  color: #ffd700;
}

.map iframe {
  border: 2px solid #ffd700;
  border-radius: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #ccc;
}

.footer-bottom a {
  color: #ffd700;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}