/* Google Fonts - Montserrat is already imported in HTML */
:root {
  --primary: #181818;
  --accent: #c59d5f;
  --bg: #232323;
  --white: #fff;
  --shadow: 0 4px 24px rgba(0,0,0,0.13);
  --section-bg: #222;
  --section-light: #fff;
  --text-dark: #232323;
  --text-light: #fff;
  --footer-bg: #181818;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text-light);
  line-height: 1.6;
}

section {
  background: var(--section-bg);
  color: var(--text-light);
  padding: 4rem 0 3rem 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
section.fade-in {
  opacity: 1;
  transform: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-btn {
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 2.2rem;
  border-radius: 32px;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  border: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
  text-transform: uppercase;
}
.cta-btn:hover {
  background: #b68a47;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

.hero {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('bg77.jpg') center/cover no-repeat;
  position: relative;
  color: #fff;
}

@media (max-width: 700px) {
  .hero {
    min-height: 70vh;
    height: 70vh;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 0 3rem 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,24,24,0.82);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem 0 3rem 0;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #fff;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #fff;
}

footer {
  background: var(--footer-bg);
  color: #fff;
  text-align: center;
  padding: 2rem 0 1rem 0;
  font-size: 1rem;
  margin-top: 2rem;
  letter-spacing: 0.04em;
  border-top: 1px solid #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.navbar {
  background: black;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s;
  padding: 1.2rem 0;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  display: inline-block;
}

nav a {
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
  padding: 0.3rem 0.1rem;
  display: inline-block;
}

nav a:hover,
nav a:focus {
  color: var(--accent) !important;
}

.booking-btn {
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1.4rem;
  border-radius: 30px;
  font-weight: 700;
  margin-left: 1.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}

.booking-btn:hover,
.booking-btn:focus {
  background: #b68a47;
  color: #fff !important;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 64px;
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.location-card {
  background: #222;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 2rem 2.5rem;
  min-width: 220px;
  max-width: 320px;
  text-align: center;
  border: 1.5px solid #333;
}
.location-card h3 {
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.location-card p {
  color: #eee;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}


nav a {
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
  padding: 0.3rem 0.1rem;
  text-transform: uppercase;
}

nav a:hover,
nav a:focus {
  color: var(--accent);
}

.booking-btn {
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1.4rem;
  border-radius: 30px;
  font-weight: 700;
  margin-left: 1.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}

.booking-btn:hover,
.booking-btn:focus {
  background: #b68a47;
  color: #fff;
}

.logo {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-right: 0;
  margin-left: 0;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  user-select: none;
  justify-self: flex-start;
}

.navbar-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-flex {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav ul {
  margin-right: 0;
  margin-left: 2.5rem;
}


/* Navbar Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown > a:after {
  content: " ▼";
  font-size: 0.7em;
  color: #c59d5f;
}

.dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  top: 2.2rem;
  min-width: 260px;
  background: #232323;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.17);
  padding: 1rem 1.2rem;
  z-index: 200;
}

.dropdown-content div {
  margin-bottom: 1.2rem;
  border-bottom: 1px solid #333;
  padding-bottom: 0.7rem;
}
.dropdown-content div:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.dropdown-content strong {
  color: var(--accent);
  font-size: 1.08em;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: block;
}

.dropdown > a:focus + .dropdown-content,
.dropdown-content:focus {
  display: block;
}


.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
}
nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -4px;
}
nav a:hover,
nav .booking-btn {
  color: var(--accent);
}
nav a:hover::after {
  width: 100%;
}
.booking-btn {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 24px;
  font-weight: 700;
  transition: background 0.2s;
}
.booking-btn:hover {
  background: #b68a47;
}
.hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  background: url('bg77.jpg') center/cover no-repeat;
  position: relative;
  color: var(--white);
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,35,35,0.7);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem 0 3rem 0;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.cta-btn {
  background: var(--accent);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
  box-shadow: var(--shadow);
}
.cta-btn:hover {
  background: #b68a47;
  transform: translateY(-2px) scale(1.03);
}
section {
  padding: 4rem 0 3rem 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
section.fade-in {
  opacity: 1;
  transform: none;
}
.about h2,
.services h2,
.contact h2,
.booking h2 {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-align: center;
}
.about p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #444;
  text-align: center;
}
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.service-card {
  background: #222;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 2rem 2.5rem;
  min-width: 220px;
  max-width: 270px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1.5px solid #333;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border-color: var(--accent);
}
.service-card h3 {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.service-card p {
  color: #eee;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto 2rem auto;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
  background: #181818;
  color: #fff;
}
.contact-form button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.8rem 0;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #b68a47;
}
.contact-info {
  text-align: center;
  color: #555;
  font-size: 1rem;
}
.booking {
  text-align: center;
}
footer {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 1.5rem 0;
  font-size: 1rem;
  margin-top: 2rem;
}

/* Booking Form Styles */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto 2rem auto;
  background: #232323;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1.5px solid #333;
}
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form input[type="time"] {
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #181818;
  color: #fff;
}
.booking-form input:focus {
  border: 1.5px solid var(--accent);
  outline: none;
  background: #fffbe9;
}
.booking-form button {
  margin-top: 0.5rem;
}
.confirmation-message {
  max-width: 400px;
  margin: 0 auto 2rem auto;
  background: #232323;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  animation: fadeInScale 0.7s cubic-bezier(.4,0,.2,1);
}
.confirmation-message h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
}
@keyframes fadeInScale {
  0% { opacity: 0; transform: scale(0.97); }
  100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 600px) {
  .booking-form, .confirmation-message {
    padding: 1.2rem 0.5rem;
    max-width: 98%;
  }
  .booking-form input,
  .booking-form button {
    font-size: 0.98rem;
    padding: 0.7rem 0.7rem;
  }
  .confirmation-message h3 {
    font-size: 1.1rem;
  }
}


/* Responsive Styles */
@media (max-width: 900px) {
  .services .service-list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .nav-flex {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    width: 98%;
    padding: 0 4px;
  }
  .navbar {
    padding: 0.5rem 0;
  }
  .logo {
    font-size: 1.5rem;
  }
  nav ul {
    gap: 1rem;
  }
  .hero-content {
    padding: 2.2rem 0 1.5rem 0;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .service-card {
    min-width: 96%;
    max-width: 99%;
    padding: 1.2rem 0.7rem;
  }
  .about h2,
  .services h2,
  .contact h2,
  .booking h2 {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .container {
    width: 100%;
    padding: 0 2px;
  }
  .navbar {
    padding: 0.3rem 0;
  }
  .logo {
    font-size: 1.2rem;
  }
  nav ul {
    flex-direction: column;
    gap: 0.7rem;
    background: var(--white);
    padding: 0.7rem 0;
    border-radius: 10px;
    box-shadow: var(--shadow);
  }
  nav a, .booking-btn {
    font-size: 1rem;
    padding: 0.7rem 1rem;
    border-radius: 18px;
    display: block;
  }
  .hero-content {
    padding: 1.5rem 0 1rem 0;
  }
  .hero h1 {
    font-size: 1.3rem;
    line-height: 1.2;
  }
  .hero p {
    font-size: 1rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 0.7rem 1.3rem;
    border-radius: 18px;
  }
  .service-card {
    min-width: 100%;
    max-width: 100%;
    padding: 1rem 0.4rem;
  }
  .about h2,
  .services h2,
  .contact h2,
  .booking h2 {
    font-size: 1rem;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
    padding: 0.6rem 0.7rem;
  }
  .contact-form button {
    font-size: 1rem;
    padding: 0.6rem 0;
  }
  footer {
    font-size: 0.95rem;
    padding: 1rem 0;
  }
}


/* Hide fade-in until animated */
section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
section.fade-in {
  opacity: 1;
  transform: none;
}

.about p,
.contact-info p {
  color: white;
}

.about h2 {
  padding-bottom: 1rem; /* space below the heading */
  font-weight: 700;
}

.about p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #FFFFF7;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.3px;
  font-weight: 400;
  font-family: 'Merriweather', serif;
}

.contact-info p {
  display: flex;
  gap: 0.5rem; /* space between label and content */
  margin: 0.25rem 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.contact-info p strong {
  width: 90px;      /* fixed width for labels */
  text-align: right; /* right-align label text */
  display: inline-block;
  
}

.contact-info {
  max-width: 600px;      /* limits width */
  margin: 0 auto;        /* centers horizontally */
  padding-left: 100px;
  padding-top: 0.8rem;
  line-height: 1.8;
  font-size: 1.1rem;      /* remove if you added from Option 1 */
}


.label {
  color: #ffffff;       /* Bright white */
  font-weight: bold;    /* Make it bold */
}

.booking input:focus {
  color: white !important; /* Force black text when input is focused */
  background-color: rgb(32,28,28);
}
