/* 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 */
.company {
  display: flex;
  align-items: center;
}

.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%; /* Position below the button */
  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; /* Smooth appearance */
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hamburger Menu: Responsive */
.menu-toggle {
  display: none; /* Initially hidden */
  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; /* Hide menu on mobile initially */
    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; /* Show when toggled */
  }

  .dropdown-content {
    position: static;
    width: 100%;
  }

  .logo {
    height: 40px;
  }

  .menu-toggle {
    display: flex; /* Hamburger menu visible only on mobile */
  }
}


body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background: #f9f9f9; /* Light background */
  color: #333; /* Dark text */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
}

.contact-title {
  font-size: 2.5rem;
  font-family: "Playfair Display", serif;
  color: #b49a5b; /* Premium Gold */
  text-align: center;
  margin-bottom: 20px;
}

.contact-description {
  text-align: center;
  font-size: 1.2rem;
  color: #555; /* Muted text */
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Contact Details Grid */
.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-detail:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  font-size: 2rem;
  color: #b49a5b; /* Premium Gold */
  margin-right: 15px;
}

.contact-detail h3 {
  font-size: 1.2rem;
  color: #333; /* Dark text */
  margin-bottom: 5px;
}

.contact-detail p {
  font-size: 1rem;
  color: #555; /* Muted text */
}

.contact-link {
  color: #b49a5b; /* Premium Gold */
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #997b4f; /* Darker Gold */
}

/* Map Container */
.map-container {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* How to Book Styling */
.steps-to-book {
  background: #f9f9f9; /* Light gray background */
  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; /* Golden color */
  text-transform: uppercase;
  margin-bottom: 10px;
}

.steps-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
}

/* Steps Grid */
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Step Cards */
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  text-align: center;
}

.step-icon {
  font-size: 3rem;
  color: #000; /* Black icons */
  margin-bottom: 10px;
}

.step p {
  font-size: 1rem;
  color: #333; /* Dark gray text */
  margin: 0;
}

/* Arrows */
.arrow {
  font-size: 2rem;
  color: #000; /* Black arrow */
}

/* Responsive Design */
@media (max-width: 768px) {
  .steps-grid {
    flex-wrap: wrap;
    gap: 30px;
  }

  .arrow {
    display: none; /* Hide arrows on smaller screens for simplicity */
  }
}

/* Footer */
.footer {
  background: linear-gradient(145deg, #0c0b30, #12142a); /* Premium navy-blue gradient */
  color: #fff; /* White text */
  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;
}

/* Section Titles */
.footer-section h3 {
  color: #ffd700; /* Gold for section headings */
  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; /* Dark grey background for icons */
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.social-icons a:hover {
  background: #ffd700; /* Gold hover effect */
  color: #12142a; /* Dark navy icon color on hover */
}

.social-icons a i {
  vertical-align: middle;
}

/* Contact Info Section */
.contact-info p {
  margin: 5px 0;
  color: #ccc; /* Light grey text */
}

.contact-info a {
  color: #ffd700; /* Gold for links */
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Quick Links Section */
.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; /* Gold hover */
}

/* Map Section */
.map iframe {
  border: 2px solid #ffd700; /* Gold border around the map */
  border-radius: 10px;
}

/* Footer Bottom Section */
.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;
}

