/* Reset + Body Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

*, *::before, *::after {
  box-sizing: border-box;
}


/* Header */
header {
  background: #121212;
  padding: 1.5rem;
  text-align: center;
}

header h1 {
  margin: 0.5rem 0 0 0;
  font-size: 2rem;
  color: #9A5DFE;
  text-shadow: 0 0 10px rgba(154, 93, 254, 0.6);
}

header nav {
  margin-top: 1rem;
}

header nav a {
  color: #C0C0C0;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: bold;
}

header nav a:hover {
  color: #9A5DFE;
  border-bottom: 2px solid #9A5DFE;
  transition: all 0.2s ease-in-out;
}

/* Hero Image Section */
.hero-image-section {
  position: relative;
  height: 80vh;
  width: 100%;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  color: #B39DDB;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #CCCCCC;
  margin-bottom: 2rem;
}

.hero-button {
  padding: 0.8rem 2rem;
  background: linear-gradient(145deg, #8e44ad, #6c3483);
  color: white;
  text-decoration: none;
  border-radius: 40px;
  font-weight: bold;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-button:hover {
  background: linear-gradient(145deg, #6c3483, #8e44ad);
}

/* Popular Services */
.popular-services {
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;

}


.popular-services h2 {
  color: #b497d6;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.service-card {
  background: #1e1e1e;
  border: 1px solid #9A5DFE;
  border-radius: 10px;
  padding: 2rem;
  width: 280px;
  box-shadow: 0 0 15px rgba(154, 93, 254, 0.1);
}

.service-card h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #ccc;
  margin-bottom: 1rem;
}

.card-button {
  background: #9A5DFE;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.card-button:hover {
  background: #7c45d4;
}

/* Values Section */
.values-section {
  background-color: #111;
  padding: 4rem 2rem;
  text-align: center;
}

.values-section h2 {
  color: #b497d6;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.value-icon {
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 10px;
  width: 180px;
  text-align: center;
  font-size: 1.8rem;
  color: #9A5DFE;
}

.value-icon p {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #ccc;
}

/* Socials Section */
.socials {
  padding: 3rem 1rem;
  background: #0e0e0e;
  text-align: center;
}

.socials h2 {
  font-size: 1.8rem;
  color: #b497d6;
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  color: #9A5DFE;
  font-weight: bold;
  margin: 0 1rem;
  text-decoration: none;
}

.social-icons a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #0D0D0D;
  color: #C0C0C0;
  text-align: center;
  padding: 2rem 1rem;
}

.footer-links {
  margin: 1rem 0;
}

.footer-links a {
  color: #ccc;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}

.footer-links a:hover {
  color: #9A5DFE;
}

.footer-logo img {
  margin-bottom: 1rem;
}

.footer-note {
  font-size: 0.9rem;
  color: #999;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem 1rem;
}

.service-card {
  background: #1A1A1A;
  border: 1px solid #9A5DFE;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 0 10px rgba(154, 93, 254, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.02);
}

.service-card button {
  margin-top: 1rem;
  background-color: #9A5DFE;
  border: none;
  padding: 0.75rem 1.5rem;
  color: #FFFFFF;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.service-card button:hover {
  background-color: #7c45d4;
}

/* Updated Service Layout */
.vertical-service-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-card.full-width {
  width: 100%;
  background: #1A1A1A;
  border: 1px solid #9A5DFE;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(154, 93, 254, 0.1);
  transition: transform 0.3s ease;
}

.service-card.full-width:hover {
  transform: scale(1.01);
}

.service-card.full-width button {
  margin-top: 1rem;
  background-color: #9A5DFE;
  border: none;
  padding: 0.75rem 1.5rem;
  color: #FFFFFF;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.service-card.full-width button:hover {
  background-color: #7c45d4;
}

/* Section Headings */
.section-heading {
  text-align: center;
  font-size: 2.4rem;
  margin: 2rem 0 1rem;
  color: #b497d6;
}

.subsection-heading {
  font-size: 1.8rem;
  margin-top: 3rem;
  text-align: center;
  color: #b497d6;
}

.vertical-service-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
}

.service-card.full-width {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #1A1A1A;
  border: 1px solid #9A5DFE;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 10px rgba(154, 93, 254, 0.2);
  transition: transform 0.3s ease;
}

.service-card.full-width:hover {
  transform: scale(1.01);
}

.service-card.full-width h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.service-card.full-width p {
  color: #ccc;
  margin-bottom: 0.5rem;
}

.service-card.full-width button {
  margin-top: 1rem;
  background-color: #9A5DFE;
  border: none;
  padding: 0.75rem 1.5rem;
  color: #FFFFFF;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.service-card.full-width button:hover {
  background-color: #7c45d4;
}

/* Optional: Center align section headings */
#services h2 {
  text-align: center;
  color: #b497d6;
  font-size: 2rem;
  margin: 2rem 0 1rem;
}

/* MODAL STYLES */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background-color: #1A1A1A;
  border: 2px solid #9A5DFE;
  border-radius: 12px;
  padding: 2.5rem;
  width: 90%;
  max-width: 750px;      /* ⬅ BIGGER */
  max-height: 90vh;      /* ⬅ prevents overflow */
  overflow-y: auto;      /* ⬅ scroll if needed */
  box-shadow: 0 0 30px rgba(154, 93, 254, 0.4);
  position: relative;
}


.close-btn {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

.booking-form input,
.booking-form textarea,
.booking-form button {
  width: 100%;
  padding: 0.75rem;
  margin: 0.5rem 0;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}

.booking-form input,
.booking-form textarea {
  background: #222;
  color: #fff;
}

.booking-form button {
  background-color: #9A5DFE;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.booking-form button:hover {
  background-color: #7c45d4;
}

/* Contact Page Modal Style */
.contact-modal-content {
  background-color: #1A1A1A;
  border: 2px solid #9A5DFE;
  border-radius: 10px;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  margin: 3rem auto;
  box-shadow: 0 0 20px rgba(154, 93, 254, 0.3);
  text-align: center;
}

.contact-modal-content h2 {
  color: #b497d6;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-modal-content p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.contact-card {
  max-width: 500px;
  margin: 4rem auto;
  padding: 2rem;
  background-color: #111;
  border: 1px solid #9A5DFE;
  border-radius: 12px;
  box-shadow: 0 0 20px #9A5DFE33;
  text-align: center;
}

.contact-card form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem;
  border-radius: 6px;
  border: none;
  background-color: #222;
  color: #fff;
}

.contact-card button {
  width: 100%;
  padding: 0.75rem;
  background-color: #9A5DFE;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-card button:hover {
  background-color: #b280ff;
}

/* Header Layout Update */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Basket Icon */
.basket-button {
  position: relative;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #9A5DFE;
  cursor: pointer;
  margin-left: auto;
  margin-right: 1rem;
}

.basket-button:hover {
  color: #b280ff;
}

.basket-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #ff4d4d;
  color: white;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 50%;
}

/* Ensure header allows absolute positioning */
header {
  position: relative;
}

/* Basket icon container */
.basket-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

/* Basket icon image styling */
.basket-icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(31%) sepia(75%) saturate(1085%) hue-rotate(230deg) brightness(102%) contrast(101%);
}

/* Count badge */
#basket-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #9A5DFE;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 0.75rem;
  font-weight: bold;
}

header {
  position: relative;
  padding: 1.5rem;
  background: #121212;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* align logo & text to the right */
}

.logo-name {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.header-logo {
  max-width: 120px;
}

.site-title {
  margin: 0.5rem 0 0;
  font-size: 2rem;
  color: #9A5DFE;
  text-shadow: 0 0 10px rgba(154, 93, 254, 0.6);
}

.main-nav {
  margin-top: 1rem;
  text-align: right;
}

.main-nav a {
  color: #C0C0C0;
  text-decoration: none;
  margin-left: 1rem;
  font-weight: bold;
}

.main-nav a:hover {
  color: #9A5DFE;
  border-bottom: 2px solid #9A5DFE;
  transition: all 0.2s ease-in-out;
}
 
/* Updated Header Layout */
header {
  background: #121212;
  padding: 1.5rem 2rem;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-name {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-logo {
  max-width: 80px;
}

.site-title {
  font-size: 1.8rem;
  color: #9A5DFE;
  margin: 0;
  text-shadow: 0 0 10px rgba(154, 93, 254, 0.6);
}

.main-nav {
  text-align: left;
  margin-top: 1rem;
  padding-left: 100px; /* offset to align with title */
}

.main-nav a {
  color: #C0C0C0;
  text-decoration: none;
  margin-right: 1.5rem;
  font-weight: bold;
}

.main-nav a:hover {
  color: #9A5DFE;
  border-bottom: 2px solid #9A5DFE;
  transition: all 0.2s ease-in-out;
}

.basket-icon {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #9A5DFE;
}

.basket-icon img {
  width: 28px;
  filter: brightness(2) hue-rotate(245deg);
}

#basket-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #9A5DFE;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 0.7rem;
}

/* Final Unified Header Style (centred) */
/* Header styling (centred) */
header {
  background: #121212;
  padding: 1.5rem 2rem;
  text-align: center;
  position: relative;
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-logo {
  max-width: 100px;
  margin-bottom: 0.5rem;
}

.site-title {
  font-size: 2rem;
  color: #9A5DFE;
  margin: 0;
  text-shadow: 0 0 10px rgba(154, 93, 254, 0.6);
}

.main-nav {
  margin-top: 1rem;
  text-align: center;
  padding-left: 0;   /* removes the forced left‑shift */
}

.main-nav a {
  color: #8d8c8c;
  text-decoration: none;
  margin: 0 1rem;   /* equal spacing left & right */
  font-weight: bold;
}


.main-nav a:hover {
  color: #9A5DFE;
  border-bottom: 2px solid #9A5DFE;
  transition: all 0.2s ease-in-out;
}

/* Basket Icon in top right */
.basket-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.basket-icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(31%) sepia(75%) saturate(1085%) hue-rotate(230deg) brightness(102%) contrast(101%);
}

#basket-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #9A5DFE;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 0.7rem;
  font-weight: bold;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  box-sizing: border-box;

}

/* Remove button for basket items */
.remove-btn {
  margin-left: 1rem;
  background-color: #ff4d4d;
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.remove-btn:hover {
  background-color: #e60000;
}

.basket-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  color: white;
}

.remove-btn {
  background: none;
  color: #ff4d4d;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.photo-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.photo-grid img:hover {
  transform: scale(1.03);
}

.photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.photo-grid img {
  max-width: 300px;
  border-radius: 8px;
}

.special-offers {
  background-color: #1A1A1A;
  color: white;
  padding: 3rem 2rem;
  border-top: 2px solid #9A5DFE;
  border-bottom: 2px solid #9A5DFE;
  text-align: center;
}

.special-offers h2 {
  font-size: 2rem;
  color: #9A5DFE;
  margin-bottom: 1.5rem;
}

.offers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.offer-card {
  background: #262626;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #9A5DFE;
  max-width: 300px;
  text-align: left;
}

.offer-card button {
  margin-top: 1rem;
  background: #9A5DFE;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.offer-card button:hover {
  background: #7b42e6;
}

.christmas-offer {
  background: url('https://www.transparenttextures.com/patterns/giftly.png'), #fff8f0;
  background-size: contain;
  border: 3px solid #E63946;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(230, 57, 70, 0.5);
  position: relative;
  animation: twinkle 2s infinite ease-in-out;
}

.christmas-offer h3 {
  color: #E63946;
}

.christmas-offer p {
  color: #000000; /* ⬅️ Ensure paragraph text is also black */
}


.christmas-offer::before {
  content: " CHRISTMAS OFFER ";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #E63946;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
}

@keyframes twinkle {
  0%, 100% { box-shadow: 0 0 12px rgba(230, 57, 70, 0.5); }
  50% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.9); }
}

.valet-info {
  padding: 4rem 2rem;
  background: #1A1A1A;
  color: white;
  border-top: 2px solid #9A5DFE;
  border-bottom: 2px solid #9A5DFE;
  text-align: center;
}

.valet-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 2rem auto 0;
}

.valet-column {
  flex: 1;
  min-width: 250px;
  background: #121212;
  border: 1px solid #9A5DFE;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(154, 93, 254, 0.2);
  text-align: left;
}

.valet-column h3 {
  color: #b497d6;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  text-align: center;
}

.valet-column ul {
  list-style: none;
  padding: 0;
}

.valet-column li {
  margin-bottom: 0.6rem;
  color: #ccc;
  font-size: 0.95rem;
  padding-left: 1rem;
  position: relative;
}

.valet-column li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #9A5DFE;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.container .packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center;
  margin: 0 auto;
  max-width: 100%;
}


.basket-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #111;
  border: 2px solid #9A5DFE;
  border-radius: 12px;
  padding: 2rem;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(154, 93, 254, 0.4);
  z-index: 1000;
  color: rgb(118, 113, 113);
  text-align: center;
}


