/* ---------- Global Styles ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0d0d0d;
  color: #f5f5f5;
  line-height: 1.7;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

a {
  color: #d4af37;
  text-decoration: none;
  transition: all 0.3s ease;
}

h1, h2 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ---------- Header ---------- */
header {
  background-color: #000;
  color: #d4af37;
  padding: 0.8rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  transition: background-color 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0;
  color: #d4af37;
}

/* Navigation links */
header nav {
  display: flex;
  gap: 2rem;
}

header nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.2s ease;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

header nav a:hover {
  color: #d4af37;
}

/* --- Scroll Effect --- */
header.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* --- Mobile View --- */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  header h1 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
  }

  header nav {
    flex-direction: column;
    gap: 0.6rem;
  }

  header nav a {
    font-size: 0.85rem;
  }
}

/* ---------- Hero Section ---------- */
#hero {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(13, 13, 13, 0.6)),
              url('../images/limo.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  margin-top: 60px;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#hero h2 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
  line-height: 1.2;
  font-weight: 700;
}

#hero p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

#hero a {
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: #000;
  padding: 16px 45px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
}

#hero a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, #e6c45e, #d4af37);
}

/* ---------- About Section ---------- */
#about {
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  text-align: center;
  padding: 100px 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

#about h2 {
  color: #d4af37;
  font-size: 3rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

#about h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

#about p {
  max-width: 900px;
  margin: 40px auto 0;
  color: #c9c9c9;
  font-size: 1.15rem;
  line-height: 1.9;
  font-weight: 300;
}

/* ---------- Services Section ---------- */
#services {
  text-align: center;
  padding: 100px 20px;
  background: #0d0d0d;
}

#services h2 {
  color: #d4af37;
  font-size: 3rem;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}

#services h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: 40px 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.6s ease;
}

.service-item:hover::before {
  left: 100%;
}

.service-item:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
  background: linear-gradient(145deg, #232323, #151515);
}

/* ---------- Contact Section ---------- */
#contact {
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  text-align: center;
  padding: 100px 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

#contact h2 {
  color: #d4af37;
  font-size: 3rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

#contact h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.contact-info {
  max-width: 600px;
  margin: 0 auto;
}

#contact p {
  margin: 20px 0;
  font-size: 1.15rem;
  color: #c9c9c9;
  font-weight: 300;
}

#contact a {
  color: #d4af37;
  font-weight: 500;
  transition: all 0.3s ease;
}

#contact a:hover {
  color: #e6c45e;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.location {
  margin-top: 30px;
  font-style: italic;
  color: #999;
}

/* ---------- Footer ---------- */
footer {
  background: #000;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.95rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  color: #888;
  font-weight: 300;
  letter-spacing: 1px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  #hero {
    margin-top: 120px;
  }

  #hero h2 {
    font-size: 2.5rem;
  }

  #hero p {
    font-size: 1.1rem;
  }

  #about h2, #services h2, #contact h2 {
    font-size: 2.2rem;
  }

  .service-list {
    grid-template-columns: 1fr;
  }
}

/* ---------- Smooth Scroll ---------- */
html {
  scroll-behavior: smooth;
}

/* ---------- Mobile Hamburger Menu ---------- */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #d4af37;
  cursor: pointer;
  transition: color 0.3s ease;
}

.menu-toggle:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  header nav {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 0.8rem;
    gap: 0.8rem;
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }

  header nav.active {
    max-height: 500px;
    padding: 1rem 0;
  }

  .menu-toggle {
    position: relative;
  }

  .menu-toggle.active {
  color: #fff;
  }

  .menu-toggle.active::before {
    content: "✕";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
  }

  /* hide the ☰ when menu is active */
  .menu-toggle.active span,
  .menu-toggle.active::after {
    display: none;
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}