/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', 'Suisse Int’l', sans-serif;
  background-color: #0A1A2F;
  color: #fff;
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}

a {
  color: #D4AF37;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #fff;
}

/* Hide visually but keep in DOM */
.hidden {
  display: none;
}
/* NAVIGATION */
header {
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 1rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #C0C0C0;
  font-weight: 500;
}

.brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  display: none;
}

.brand-name {
  font-family: 'Cinzel', 'Didot', serif;
  font-size: 1.0rem;
  font-weight: bold;
  color: #fff;
}

#darkModeToggle {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #C0C0C0;
  cursor: pointer;
  margin-right: auto;
  position: relative;
  z-index: 10000;
}

#darkModeToggle:hover {
  color: #D4AF37;
}

.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* HERO */
/* --- HERO --- */
#hero {
  background: linear-gradient(rgba(10, 26, 47, 0.3), rgba(0, 0, 0, 0.3)),
    url('images/IMG_0377.jpeg') center/cover no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 -40px 60px rgba(0, 0, 0, 0.6); /* adds depth at bottom */
}

.hero-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.hero-row {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-image-top,
.hero-image-bottom {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Headline */
.headline-text {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 1px;
  max-width: 800px;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.headline-text .break {
  display: none;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #D4AF37;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #C0C0C0;
  color: #000;
  box-shadow: 0 0 15px rgba(192, 192, 192, 0.5);
}

/* Desktop: headline and button inline */
@media (min-width: 769px) {
  .hero-content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .hero-image-top,
  .hero-image-bottom {
    flex-basis: 100%;
    max-width: 600px;
  }

  #hero {
    text-align: center;
  }

  .headline-text {
    margin: 0;
  }
}

/* Mobile Layout */
@media (max-width: 768px) {
  .headline-text {
    font-size: 2rem;
    text-align: center;
  }

  .headline-text .break {
    display: inline;
  }

  .cta-button {
    margin-top: 1.5rem;
  }

  .hero-image-top,
  .hero-image-bottom {
    max-width: 100%;
  }
}


/* Book Your Journey inline for desktop */
.cta-button.desktop-inline {
  margin-left: 1rem;
  font-size: 1rem;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  top: -0.2em;
  margin-top: 0;
}

/* Mobile only Book Your Journey */
.mobile-only {
  display: none;
}

/* TAILORED INTRO */
.tailored-intro {
  background: linear-gradient(rgba(10, 26, 47, 0.5), rgba(0, 0, 0, 0.6)),
              url('images/IMG_0376.jpeg') center/cover no-repeat;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 -30px 60px rgba(0, 0, 0, 0.4); /* optional depth */
}

.tailored-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #D4AF37;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  letter-spacing: 1px;
}

/* Desktop version: increased vertical padding */
@media (min-width: 769px) {
  .tailored-intro {
    padding: 10rem 2rem;
  }
}

/* SERVICES */
#services {
  padding: 4rem 2rem;
  background-color: #000;
  text-align: center;
}

.services-grid {
  display: grid;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card {
  position: relative;
  background-color: #000; /* Fallback */
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: inset 0 -40px 60px rgba(0, 0, 0, 0.6); /* adds depth at bottom */
}

.service-card h3 {
  font-size: 1.4rem;
  color: #D4AF37;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #fff;
  font-size: 1rem;
}


.service-card h3,
.service-card p {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.5px;
  line-height: 1.4;
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* dark overlay for readability */
  z-index: 1;
}

/* Specific card backgrounds */
.private-jet {
  background-image: url('images/IMG_0539.jpg');
}

.luxury-car {
  background-image: url('images/Image 005.jpg');
  background-size: 100%;               /* ~1/1 = 100% to show 100% */
  background-position: center;
  background-repeat: no-repeat;
}

/* CONTACT */
#contact {
  background: #0A1A2F;
  padding: 4rem 2rem;
  text-align: center;
  color: #C0C0C0;
}

#contact h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  color: #D4AF37;
  font-size: 2rem;
}

#contact p {
  margin-bottom: 2rem;
}

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

.contact-form .form-group {
  flex: 1;
  min-width: 200px;
}

.form-row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #D4AF37;
  outline: none;
}

.contact-form button {
  align-self: flex-start;
  padding: 0.75rem 2rem;
  background: #D4AF37;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  background: #C0C0C0;
  box-shadow: 0 0 12px rgba(192, 192, 192, 0.4);
}

.contact-info {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #aaa;
}

.contact-info a {
  color: #D4AF37;
}

.modal {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal:not(.hidden) {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #fff;
  color: #000;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
  
  .contact-form .form-group {
    width: 100%;
  }
}

/* FOOTER */
footer {
  background: #000;
  padding: 2rem;
  text-align: center;
  color: #C0C0C0;
}

.social-links {
  margin: 1rem 0;
}

.social-links a {
  color: #C0C0C0;
  margin: 0 0.75rem;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #D4AF37;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .headline-text {
    font-size: 2rem;
  }

  .headline-text .break {
    display: inline;
  }

  /* Hide desktop inline CTA, show mobile CTA */
  .cta-button.desktop-inline {
    display: none;
  }

  .mobile-only {
    display: inline-block;
    margin-top: 2rem;
  }

  /* Hamburger menu visible */
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .brand {
    position: static;
    transform: none;
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

/* DARK MODE */
.dark-mode {
  background-color: #111;
  color: #ddd;
}

.dark-mode header {
  background: rgba(20, 20, 20, 0.85);
}

.dark-mode .nav-links a {
  color: #aaa;
}

.dark-mode .nav-links a:hover {
  color: #D4AF37;
}

.dark-mode #darkModeToggle {
  color: #aaa;
}

.dark-mode #darkModeToggle:hover {
  color: #D4AF37;
}

.dark-mode .service-card {
  background-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .contact-form input,
.dark-mode .contact-form textarea {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ddd;
}

.dark-mode .contact-form button {
  background: #D4AF37;
  color: #000;
}

.dark-mode footer {
  background-color: #111;
  color: #aaa;
}

.dark-mode .social-links a {
  color: #aaa;
}

.dark-mode .social-links a:hover {
  color: #D4AF37;
}
