/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0A0A0A;
  color: #ffffff;
  line-height: 1.6;
}

/* Header */
header {
  position: sticky;
  top: 0;
  background: linear-gradient(90deg, #0A0A0A, #FF0000);
  padding: 1rem 2rem;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

nav a {
  color: #ffffff;
  margin-left: 2rem;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #FF1493;
}

.top-nav.alt-style {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  background: #000;
  color: white;
  flex-wrap: wrap;
}

.large-logo {
  max-height: 70px; /* or any height you want */
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-box img {
  height: 90px;
}

.logo-text h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  margin: 0;
}

.logo-text p {
  font-size: 0.75rem;
  margin: 0;
  color: #ccc;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto; /* <— THIS moves the nav to the right */
  flex-wrap: wrap;
}

.main-menu a {
  position: relative;
  text-decoration: none;
  color: white;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

.main-menu a:hover {
  color: white;
}

.main-menu .nav-cta {
  background-color: #FF1493;
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.main-menu .nav-cta:hover {
  background-color: #ff3385;
}

.main-menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: white;
  transition: width 0.3s ease;
}

.main-menu a:hover::after {
  width: 100%;
}

/* === Updated Mobile Nav Styles === */

.navbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

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

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

.nav-links li {
  margin-bottom: 1rem;
}

.nav-links li:last-child {
  margin-bottom: 0;
}

.nav-links a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

/* Sections */
.section {
  padding: 3rem 1.5rem;
  background: radial-gradient(circle at center, #1a1a1a, #0A0A0A);
}

.section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fff, #FF1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subheading {
  text-align: center;
  color: #ccc;
}

/* Hero Section Styles */
.hero {
  position: relative;
  height: 90vh;
  background: url('images/DDDhero.png') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: left;
  padding: 0 2rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.hero-content h1 span {
  color: #FF1493;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 1rem 0 2rem;
  color: #f0f0f0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn.primary {
  background: linear-gradient(to right, #FF1493, #FF0000);
  color: white;
}

.btn.primary:hover {
  background: #ff3385;
  transform: scale(1.05);
}

.btn.secondary {
  background: transparent;
  border: 2px solid #FF1493;
  color: white;
}

.btn.secondary:hover {
  background: #FF1493;
  color: white;
  transform: scale(1.05);
}

/* Card Grid */

.white-left {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: white !important;
  color: white !important;
}

.gradient-text {
  background: linear-gradient(90deg, #FF1493, #FF0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

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

.card {
  background: #111;
  border: 1px solid #FF1493;
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px #FF1493;
}

.card h3 {
  font-size: 1.25rem;
  background: linear-gradient(90deg, #fff, #FF1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.card .price {
  color: #FF1493;
  font-weight: bold;
}

.card .time {
  font-size: 0.85rem;
  color: #aaa;
}

/* Contact */
.contact {
  padding: 3rem 1.5rem;
  background: #111;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fff, #FF1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact p a {
  color: #FF1493;
}

.contact p a:hover {
  text-decoration: underline;
}

.map-container {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.map-container iframe {
  width: 100%;
  max-width: 600px;
  height: 300px;
  border: none;
  border-radius: 10px;
}

/* Footer */
footer {
  background-color: #111;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 3rem 2rem;
}

footer h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

footer p {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.after-hours {
  color: #FF1493;
  font-weight: bold;
}

.social-icon {
  height: 24px;
  width: 24px;
  margin-right: 10px;
  filter: brightness(0) saturate(100%) invert(19%) sepia(94%) saturate(4000%) hue-rotate(316deg) brightness(96%) contrast(105%);
  transition: filter 0.3s ease;
}

.social-icon:hover {
  filter: brightness(0) invert(1); /* turns white on hover */
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  background-color: #0A0A0A;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== BOOKING PAGE STYLES ===== */

.form-container {
  max-width: 800px;
  margin: 3rem auto;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(251, 34, 150, 0.178);
}

/* ==== Responsive Booking Form Layout ==== */

.form-container {
  max-width: 800px;
  margin: 3rem auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(255, 20, 147, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
}

form label {
  font-weight: bold;
  margin-bottom: 0.3rem;
  color: #fff;
}

input,
select {
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #FF1493;
  background-color: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 1rem;
  width: 100%;
}

input::placeholder {
  color: #ccc;
}

select option {
  background-color: #111;
  color: #fff;
}

/* Responsive behavior for small screens */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group[style*=\"grid-column\"] {
    grid-column: 1 !important;
  }
}

h3 {
  color: #fff;
  margin-top: 2rem;
  font-size: 1.2rem;
}

/* Services Grid */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-option {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-start;
  transition: background-color 0.2s ease;
  height: 100%;
}

.service-label {
  flex: 1;
  word-break: break-word;
}

.service-option:hover {
  background-color: rgba(255, 20, 147, 0.1);
}

.service-option input[type="checkbox"] {
  transform: scale(1.2);
  accent-color: #FF1493;
}

.service-option span {
  display: inline-block;
  font-weight: 600;
  color: white;
  line-height: 1.4;
}

/* Book Page Service Grid with Toggle Highlight */
.alt-services-list.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.alt-service-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  padding: 1rem;
  border-radius: 10px;
  color: white;
  font-weight: 500;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  position: relative;
}

.alt-service-item:hover {
  background-color: rgba(255, 20, 147, 0.1);
}

.alt-service-item input[type="checkbox"] {
  display: none;
}

.alt-service-item span {
  margin-left: 0.5rem;
}

.alt-service-item input[type="checkbox"]:checked + span {
  font-weight: bold;
  color: #FF1493;
}

.alt-service-item input[type="checkbox"]:checked + span::before {
  content: '✔ ';
  color: #FF1493;
}

.alt-service-item.checked {
  border: 1px solid #FF1493;
  background-color: rgba(255, 20, 147, 0.1);
}

/* Total Display Styling */
.total-display {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
}


/* Submit Button */
button[type="submit"] {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to right, #FF1493, #FF0000);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

button[type="submit"]:hover {
  transform: scale(1.02);
  opacity: 0.95;
}

/* Responsive Hamburger Icon */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

/* === Responsive Navigation Styles === */
@media (max-width: 768px) {
  .main-menu {
    display: none;
  }

  .navbar {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 1rem;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 1rem;
  border-radius: 12px;
  z-index: 999;
}

.navbar a {
  margin: 0.5rem 0;
  color: white;
  text-decoration: none;
}

.navbar.active {
  display: flex;
}

  .hamburger {
    display: block;
  }

  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}


/* Desktop View */
@media (min-width: 769px) {
  .navbar {
    display: none; /* hide mobile nav */
  }

  .hamburger {
    display: none; /* hide hamburger icon */
  }

  .main-menu {
    display: flex; /* show desktop nav */
    gap: 2rem;
  }
}

