* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
}
body {
  margin: 0;
  background-color: #000;
  color: #f0f0f0;
  font-family: 'Playfair Display', serif;
}
h3{
  margin-top: 30px;
  color: gold;
  font-size: 1.5rem;
}
/* header {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-image) no-repeat center center/cover;
  /* background-attachment: fixed; */
  /* opacity: 0.5;
  z-index: 1;
}
header > *:not(.header-background) {
  position: relative;
  z-index: 2;
} */ 

header {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.header-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.5;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.2;
  z-index: 2;
}

header > *:not(.header-img):not(.overlay) {
  position: relative;
  z-index: 3;
}


nav {
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1001;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}
.nav-left, .nav-center{
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-center {
  flex: 1;
  justify-content: center;
  padding: 10px
}
.nav-center ul li a {
  display: block;
  padding: 16px 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: gold;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-center ul li a:hover {
  transform: scale(1.05);
}

nav .logo {
  height: 120px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li a {
  color: gold;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s, color 0.2s;
}
nav ul li a:hover {
  transform: scale(1.05);
  color: brown;
}
/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%); /* Shift it back by half its width */
  background-color: rgba(0, 0, 0, 0.95);
  list-style: none;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  min-width: 200px;
  z-index: 1000;
  text-align: center;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: gold;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.dropdown-menu li a:hover {
  background-color: gold;
  color: black;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.nav-button {
  background-color: gold;
  color: black;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, background-color 0.2s;
}
.nav-button:hover {
  transform: scale(1.05);
  background-color: #ffd700;
}
header h2 {
  font-size: 3rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 10px;
  color: gold;
  position: relative;
  z-index: 2;
}
header p {
  font-size: 1.3rem;
  margin-top: 10px;
  padding: 5px 15px;
  border-radius: 8px;
  position: relative;
  z-index: 2;
}
.header-buttons {
  margin-top: 40px;
  display: flex;
  gap: 30px;
}
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.section-intro {
  text-align: center;
  margin-bottom: 40px 20px 60px;
}

.section-intro h2 {
  font-size: 2.5rem;
  color: gold;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-intro p {
  font-size: 1.1rem;
  color: #f0f0f0;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.5px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 20px 60px;
}

.gallery img {
  max-width: 600px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.gallery-item {
  width: clamp(350px, 30vw, 400px); /* Responsive width */
  aspect-ratio: 4 / 3; /* Keeps images from stretching */
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px gold;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.fullscreen-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 1.2rem;
  padding: 5px 8px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 2;
}

.fullscreen-overlay {
  display: flex;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fullscreen-overlay.active{
  visibility: visible;
  opacity: 1;
}

.fullscreen-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.fullscreen-overlay.active img {
  transform: scale(1);
  opacity: 1;
}

.img-caption {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.65);
  color: gold;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .img-caption {
  opacity: 1;
}

.before-after-pair {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.before-after-item {
  width: clamp(350px, 30vw, 400px);
  position: relative;
  max-width: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px gold;
  transition: transform 0.3s ease;
}

.before-after-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  display: block;
  border-radius: 12px;
}

.before-after-item:hover {
  transform: scale(1.05);
}

.before-after-item .img-caption {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.65);
  color: gold;
  padding: 5px 10px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  opacity: 1; /* Always visible */
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: gold;
}
.service-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 0px 0px 0;
}
a.service-card {
  position: relative;
  height: 300px;
  width: auto;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 30px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
  color: inherit;
}
a.service-card:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}
a.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.service-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 600px;
}
.service-subtitle {
  font-size: 1.1rem;
  color: gold;
  margin-bottom: 5px;
  margin-left: 5px;
}
.service-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.service-description {
  font-size: 1.25rem;
  line-height: 1.7;
}
.service-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s ease;
}
.service-card:hover img {
  transform: scale(1.05);
}
.split-section {
  display: flex;
  flex-direction: row;
  height: 600px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.split-section .video-container {
  flex: 1;
  position: relative;
  clip-path: polygon(0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
}
.split-section video {
  width: 100%;
  height: 110%;
  object-fit: cover;
}
.split-section .text-container {
  flex: 1;
  background: linear-gradient(150deg, #000000, #aaaaaa75, #000);
  padding: 50px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  clip-path: polygon(0% 0, 100% 0, 90% 100%, 0% 100%);
}
.split-section .text-container p {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.8;
  color: #f0f0f0;
  max-width: 500px;
}
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
}

.contact-form {
  max-width: 700px;
  margin: 40px auto;
  background: #111;
  padding: 30px;
  border-radius: 10px;
}
.contact-form label {
  display: block;
  margin-bottom: 10px;
  color: gold;
  font-weight: bold;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}
.contact-form textarea {
  height: 150px;
  resize: vertical;
}
.contact-form button {
  background-color: gold;
  color: black;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.contact-form button:hover {
  background-color: #ffd700;
}
.split-section .about-description {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 600;
  color: #f0f0f0;
}

.carousel-wrapper {
  position: relative;
  width: 90%;
  max-width: 700px;
  margin: 0 auto 60px;
  overflow: hidden;
}
.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  border-radius: 10px;
  pointer-events: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.6);
  border: none;
  color: gold;
  font-size: 2rem;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 10;
  border-radius: 8px;
  pointer-events: auto;
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

.carousel-btn:hover {
  background-color: rgba(255, 215, 0, 0.8);
  color: black;
}

.carousel img {
  scroll-snap-align: start;
  width: 100%;
  height: auto;
  max-width: 400px;
  max-height: 600px;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 10px;
}
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.carousel-indicators .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #555;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-indicators .dot.active {
  background-color: gold;
  box-shadow: 0 0 5px gold;
}
.faq-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #444;
  border-radius: 10px;
  overflow: hidden;
  background-color: #111;
}

.faq-question {
  background: linear-gradient(150deg, #000000, #aaaaaa75, #000);
  color: gold;
  cursor: pointer;
  padding: 15px 20px;
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
  background-color: #1a1a1a;
  color: #eee;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* enough for most answers */
  padding: 15px 20px;
}

.faq-item.active .faq-question::after {
  content: " ▲";
}

.faq-question::after {
  content: " ▼";
  color: gold;
  font-size: 1.2rem;
}
.booking-section {
  max-width: 800px;
  margin: auto;
  background: #111;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}
.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  text-align: center;
  margin-bottom: 20px;
}
.calendar-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}
#monthLabel {
  font-size: 1.2rem;
  color: white;
  font-weight: bold;
}
.calendar-controls button {
  background-color: gold;
  color: black;
  font-weight: bold;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
}
.calendar div {
  padding: 10px;
  border: 1px solid #444;
  border-radius: 8px;
  cursor: pointer;
}
.calendar .available {
  background-color: gold;
  color: #000;
  font-weight: bold;
}
.calendar .unavailable {
  opacity: 0.3;
  pointer-events: none;
}
.calendar .selected {
  border: 2px solid #fff;
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.time-slot {
  padding: 10px 20px;
  border: 1px solid gold;
  border-radius: 5px;
  cursor: pointer;
  color: gold;
  background: transparent;
}
.time-slot.selected {
  background: gold;
  color: #000;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea, select {
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}

button {
  background-color: gold;
  color: black;
  padding: 12px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.social-icons a {
  text-decoration: none;
  color: inherit;
}

.social-icons a:visited{
  color: inherit;
}

/* ----- Mobile ----- */

.nav-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .nav-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .nav-center {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%; /* or 100% if you want full screen */
    height: auto;
    background-color: black;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
  }
 
  .nav-center ul {
    flex-direction: column;
    text-align: center;
    transition: padding 0.4s ease;
    margin: 0;
  }

  .nav-center ul li:not(:last-child) {
    width: 100%;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid gold;
    list-style: none;
  }

  .nav-center.active {
    transform: translateX(0);
  }
    .nav-center ul li a {
    display: block;
    padding: 0px 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: gold;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
  }

  .service-description {
    font-size: 1rem;
    line-height: 1.7;
  }

  .nav-center ul li a:hover {
    transform: scale(1.05);
  }

    .split-section {
    flex-direction: column;
    height: auto;
  }

  .split-section .video-container,
  .split-section .text-container {
    clip-path: none;
    width: 100%;
  }

  .split-section .video-container {
    order: 1;
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
  }

  .split-section .text-container {
    order: 2;
    padding: 30px 20px;
  }

  .split-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .split-section .text-container p {
    font-size: 1rem;
    padding: 10px;
  }
}