:root {
  --gold: #d4af37;
  --dark-gold: #b8860b;
  --black: #000000;
  --dark-gray: #1a1a1a;
  --light-gray: #333333;
  --white: #ffffff;
  --header-bg: #000;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background-color: var(--header-bg);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.logo {
  display: flex;
  justify-content: center;
}

.logo-img {
  max-height: 60px;
  width: auto;
}

.logo h1 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 10px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.menu-text {
  margin-right: 10px;
}

.hamburger {
  display: inline-block;
  width: 25px;
  height: 3px;
  background-color: var(--gold);
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: var(--gold);
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.nav {
  width: 100%;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  justify-content: center;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--gold);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--gold);
  color: var(--black);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--dark-gold);
  transform: translateY(-2px);
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--dark-gray);
}

.services h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card h3 {
  color: var(--gold);
  margin-bottom: 15px;
}

/* Destinations Section */
.destinations {
  padding: 100px 0;
}

.destinations h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.destination-card {
  background-color: var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.destination-card:hover {
  transform: translateY(-10px);
}

.destination-image {
  height: 200px;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.destination-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.destination-content h3 {
  color: var(--gold);
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.destination-content p {
  color: var(--white);
  margin-bottom: 0;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: var(--dark-gray);
}

.contact h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 15px;
  border: 2px solid var(--gold);
  background-color: var(--light-gray);
  color: var(--white);
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D4AF37'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
  padding-right: 40px;
}

.contact-form select option {
  background-color: var(--light-gray);
  color: var(--white);
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

/* Footer */
.footer {
  background-color: var(--black);
  padding: 30px 0;
  text-align: center;
}

.footer p {
  margin: 5px 0;
}

.credits {
  font-size: 0.9rem;
  color: var(--gold);
  margin-top: 15px !important;
}

.credits a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.credits a:hover {
  color: var(--dark-gold);
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-button i {
  font-size: 30px;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  background-color: #128c7e;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--header-bg);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .menu-toggle.active .hamburger {
    background-color: transparent;
  }

  .menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }

  .menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .whatsapp-button {
    width: 50px;
    height: 50px;
  }

  .whatsapp-button i {
    font-size: 25px;
  }
}
