:root {
  --charcoal: #111111;
  --soft-red: #6b151c; 
  --background-color: var(--charcoal);
  --primary-color: var(--soft-red);
  --text-color: #ffecec; /* Adjust if needed */
}

/* General Styles */
body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: Arial, sans-serif; /* Use preferred font */
}

a, button {
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

a:hover, button:hover {
  background-color: var(--charcoal);
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
  background: var(--soft-red);
}

::-webkit-scrollbar-thumb:hover {
  background: #6b151c;
}

/* About Page Styles */
.about .nightclub-lights {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--soft-red), var(--charcoal), var(--soft-red), var(--charcoal));
  background-size: 400% 400%;
  z-index: -1;
  animation: pulse 5s infinite ease-in-out;
}

/* Image Gallery Styles */
.image-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.image-wrapper {
  flex: 1;
  max-width: calc(50% - 10px);
  box-sizing: border-box;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Service Selector Styles */


.service-selector label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}

.service-selector input[type=range] {
  appearance: none; /* Standard syntax */
  -webkit-appearance: none; /* For WebKit browsers like Safari and Chrome */
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: var(--soft-red);
  outline: none;
  opacity: 0.7;
  transition: opacity .2s, background 0.3 ease;
  cursor: pointer;
}

.service-selector input[type=range]:hover {
  opacity: 1;
}

.service-selector input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--charcoal);
  cursor: pointer;
  border: 2px solid #ffff;
}

.service-selector input[type=range]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--charcoal);
  cursor: pointer;
  border: 2px solid #ffff;
}

/* Service Package Styles */
.service-package {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-package-active {
  display: block;
  opacity: 1;
}

/* Contact Form Styles */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: #3b3b3b;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 15px;
}





/* Footer Styles */
footer {
  position: relative;
  z-index: 10;
}

.facebook-link {
  display: block;
  background-color:rgba(0,0,0,0.1);
  color: rgb(148, 12, 18);
  text-align: center;
  padding: 10px;
  margin: 0 auto;
  text-decoration: none;
  max-width: 300px;
  box-sizing: border-box;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .facebook-link {
    max-width: 100%;
    padding: 10px 0;
  }
}

/* Card Styles */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5px;
}

.card {
  flex-basis: calc(33.333% - 20px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  background-color: rgba(0,0,0,0.1);
  margin-bottom: 5px;
  overflow: hidden;
  border-radius: .05px;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card-content {
  padding: 20px;
  background-color: var(--background-color);
  color: var(--text-color);
}

.card h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.card p {
  color: #884040;
}

.card-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--soft-red);
  text-decoration: none;
}

.card-link:hover {
  color: #fff;
  text-decoration: underline;
}


/* Service Modal Styles */
.service-modal {
  display: none;
  position: fixed;
  z-index: 1000; /* High z-index to ensure it sits on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8); /* Increase the opacity here */
}

.service-modal-content {
  position: fixed; /* Changed from relative to fixed */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 660px;
  box-sizing: border-box;
  z-index: 1001;
  overflow-y: auto; /* Added to allow scrolling within the modal */
}

.service-modal-content iframe {
  display: block;
  margin: 0 auto;
  width: 100%;
  /* Set a max-width if the form should not stretch to full width of the modal */
}

.service-modal-content .close {
  position: absolute;
  right: -10px;
  top: -10px;
  z-index: 10;
  cursor: pointer;
  color: #aaa;
}
.service-modal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 1002;
  cursor: pointer;
  color: #aaa;
}

.close {
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@keyframes zoom {
  from {transform: scale(0)} 
  to {transform: scale(1)}
}
#logo-container {
  position: relative;
  width: 320px; /* Adjust based on video/image size */
  height: 240px; /* Adjust based on video/image size */
  overflow: hidden;
}

#logo-video, #logo-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#logo-image {
  display: none;
}