/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/* ========== Base Reset & Variables ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #d4af37;
  --black: #111;
  --white: #fff;
}

html, body {
  height: 100%;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--white);
  background: transparent;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* ========== Background Video ========== */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  filter: brightness(40%);
  z-index: -1;
  pointer-events: none;
  background-color: black;
}

/* ========== Content Container ========== */
.content {
  position: relative;
  z-index: 2;
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
  transform: translateZ(0);
}

/* ========== Hero Section ========== */
.hero {
  height: 92vh; /* instead of 100vh */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
}


.hero h1 {
  font-size: 5rem;
  letter-spacing: 4px;
  text-align: center;
  color: var(--gold);
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
  animation: fadeInDown 1.2s;
  text-transform: none; /* Allow lowercase */
}

/* ========== Section Styles ========== */
section {
  margin: 80px 0;
  background: transparent;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
  padding: 60px 0 40px 0;
  opacity: 0;
  transform: translateX(0) scale(0.98);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

section.from-left { transform: translateX(-60px); }
section.from-right { transform: translateX(60px); }
section.visible.from-left,
section.visible.from-right { transform: translateX(0); }

section h2 {
  font-size: 3.2rem;
  margin-bottom: 30px;
  text-align: center;
  color: var(--gold);
  letter-spacing: 2px;
}

/* ========== Testimonials ========== */
.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 32px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.testimonial {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  color: var(--white);
  font-style: italic;
  font-size: 1rem;
  text-align: left;
  min-height: 140px;
}

.testimonial span {
  display: block;
  margin-top: 12px;
  font-weight: bold;
  color: var(--gold);
  font-style: normal;
}


/* ========== Gallery ========== */
.gallery .photos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.gallery img {
  width: 350px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(212,175,55,0.3);
}

/* ========== Pricing ========== */
.pricing table {
  margin: 0 auto;
  border-collapse: collapse;
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.pricing td {
  padding: 16px 32px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--white);
}

.pricing tr:last-child td {
  border-bottom: none;
}

/* ========== Buttons ========== */
.appointment-btn, .nav-link, .submit-btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.appointment-btn:hover,
.nav-link:hover,
.submit-btn:hover {
  background: #bfa134;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(212,175,55,0.4);
}

/* ========== Logo ========== */
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-align: center;
  text-transform: none; /* Allow lowercase */
  margin-bottom: 0px;
}

/* ========== Forms ========== */
.booking-form {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.form-group {
  margin-bottom: 25px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: bold;
  font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
  text-transform: none !important;
  font-variant: normal !important;
}

input[type="text"],
input[type="email"],
textarea {
  font-family: 'Anton', sans-serif !important;
  text-transform: none !important;
  font-variant: normal !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group select option {
  background: var(--black);
  color: var(--white);
}

/* ========== Appointment Page Styling ========== */
.appointment-page {
  background: var(--black);
}

.appointment-page #bg-video {
  display: none;
}

.appointment-page .content {
  background: transparent;
}

.appointment-page section {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* ========== Time slots ========== */
.time-slot-card {
  display: inline-block;
  background: #111;
  border: 2px solid gold;
  border-radius: 8px;
  padding: 12px;
  margin: 10px;
  color: white;
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease;
  min-width: 140px;
  font-weight: bold;
}

.time-slot-card:hover {
  background-color: gold;
  color: black;
}

.time-slot-card.selected {
  background-color: #ffcc00;
  color: black;
  border-color: white;
}

.calendar-scroll-container {
  overflow-x: auto;
  max-width: 100%;
  padding: 1rem;
}

.time-slot-table {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  min-width: max-content;
}

.time-slot-column {
  background-color: #111;
  border: 2px solid #ffd700;
  border-radius: 8px;
  padding: 1rem;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.time-slot-column h3 {
  margin-bottom: 0.5rem;
  color: #ffd700;
  font-size: 1rem;
  text-align: center;
}

.slot-card {
  background: black;
  color: white;
  border: 2px solid #ffd700;
  border-radius: 5px;
  padding: 0.4rem 0.6rem;
  margin: 0.3rem 0;
  cursor: pointer;
  font-size: 0.9rem;
  text-align: center;
  transition: background 0.2s;
}

.slot-card:hover,
.slot-card.selected {
  background-color: #ffd700;
  color: black;
  font-weight: bold;
}

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid var(--gold);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 10px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ========== Responsive Design ========== */
@media (max-width: 700px) {
  .hero h1 { font-size: 2.5rem; }
  .gallery img { width: 90vw; }
  .content { padding: 20px 5px; }
  section { padding: 20px 0 10px 0; }
  .booking-form { padding: 0 20px; }
  .calendar-container { margin: 0 20px; min-height: 300px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }
}

/* Restore proper font for buttons and inputs */
input[type="text"],
input[type="email"],
textarea,
select {
  font-family: 'Anton', sans-serif !important;
  text-transform: none !important;
  font-variant: normal !important;
}

.submit-section {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.appointment-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* ========== Pricing styling ========== */
.pricing-option {
  margin-bottom: 40px;
  text-align: left;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.pricing-option h3 {
  font-size: 2rem;
  color: var(--gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.price-tag {
  font-size: 2rem;
  font-weight: bold;
  color: var(--white);
}

.description {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.5;
  font-family: 'Anton', sans-serif;
}

.pricing-wrapper {
  position: relative;
  margin-bottom: 40px;
  transition: transform 0.3s ease;
}

.book-arrow {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--gold);
  color: black;
  font-size: 2rem;
  padding: 0 12px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: right 0.3s ease, opacity 0.3s ease;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.pricing-wrapper:hover .book-arrow {
  right: -20px;
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 600px) {
  .book-arrow {
    display: none;
  }
}

/* ========== Scroll Arrow styling ========== */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.scroll-down {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.arrow-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: rotate(90deg); /* Make › point downward */
}

.arrow {
  font-size: 8rem;
  color: var(--gold);
  animation: bounceVertical 1.2s infinite;
  margin: -0.4rem 0; /* reduce spacing between arrows */
}

@keyframes bounceVertical {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}

/* ========== About Section ========== */
.about-section {
  padding: 60px 20px;
  background-color: rgba(255, 255, 255, 0.02); /* subtle background */
  color: var(--white);
  text-align: left;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  display: block;
}

.about-section a img.about-image {
  max-width: 300px;
}

.about-text {
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: 'Anton', sans-serif;
}

.about-text p {
  font-weight: 400; /* or 500 for a slightly stronger look */
  font-size: 1.2rem;
  color: white;
  line-height: 1.6;
}

/* ========== Social Footer ========== */
.social-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  gap: 12px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.social-icons a:hover img {
  opacity: 1;
}






