:root {
  --background: #181A1B;
  --primary: #C2B280;
  --secondary: #5A2E2E;
  --highlight: #3C4A4E;
  --text: #ECE7DF;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', 'Open Sans', Arial, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}
header {
  background: rgba(24,26,27,0.97);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
}
.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--primary);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.hero-section {
  background: linear-gradient(rgba(24,26,27,0.85), rgba(24,26,27,0.85)), url('hero-bg.jpg') center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.hero-content {
  max-width: 700px;
  margin: 0 auto;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--text);
}
.cta-btn {
  background: var(--secondary);
  color: var(--primary);
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.cta-btn:hover {
  background: var(--primary);
  color: var(--background);
}
section {
  padding: 4rem 2vw;
  max-width: none;
  margin: 0 0 2.5rem 0;
  border-radius: 0;
}
.about-section {
  background: rgba(24,26,27,0.98);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.about-text {
  flex: 1 1 300px;
}
.about-text h2 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}
.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  line-height: 1.8;
}
.about-photo {
  flex: 1 1 250px;
  text-align: center;
  margin-bottom: 2rem;
}
.about-photo img {
  max-width: 250px;
  border-radius: 16px;
  border: 3px solid var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.about-gallery {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
.about-gallery img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--highlight);
  box-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.listen-section {
  background: var(--highlight);
  color: var(--text);
  padding: 4rem 2vw;
  text-align: center;
  border-radius: 0;
  margin-bottom: 0;
}
.listen-section h2 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 2rem;
}
.tabbed-interface {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.tab-btn {
  background: var(--background);
  color: var(--text);
  border: none;
  padding: 0.7rem 2rem;
  font-size: 1rem;
  border-radius: 20px 20px 0 0;
  cursor: pointer;
  font-family: var(--font-heading);
  transition: background 0.2s, color 0.2s;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--primary);
  color: var(--background);
}
.tab-content {
  max-width: 600px;
  margin: 0 auto;
}
.booking-section {
  background: var(--primary);
  color: var(--background);
  padding: 4rem 1.5rem;
  text-align: center;
  border-radius: 18px;
}
.booking-section h2 {
  font-family: var(--font-heading);
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.booking-section p {
  margin-bottom: 2rem;
}
#booking-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff8f0;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
#booking-form label {
  text-align: left;
  font-weight: bold;
  color: var(--background);
}
#booking-form input, #booking-form textarea, #booking-form select {
  padding: 0.7rem;
  border: 1px solid var(--highlight);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
}
#booking-form button {
  background: var(--secondary);
  color: var(--primary);
  border: none;
  padding: 0.8rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.2s, color 0.2s;
}
#booking-form button:hover {
  background: var(--primary);
  color: var(--background);
}
#form-message {
  margin-top: 1rem;
  font-weight: bold;
}
#booking-form textarea,
#contact-form textarea {
  resize: none;
}
.contact-section {
  padding: 4rem 1.5rem;
  background: var(--background);
  color: var(--text);
  text-align: center;
  border-radius: 18px;
}
.contact-section h2 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
#contact-form {
  max-width: 400px;
  margin: 0 auto 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#contact-form label {
  text-align: left;
  font-weight: bold;
}
#contact-form input, #contact-form textarea {
  padding: 0.7rem;
  border: 1px solid var(--highlight);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
}
#contact-form button {
  background: var(--secondary);
  color: var(--primary);
  border: none;
  padding: 0.8rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.2s, color 0.2s;
}
#contact-form button:hover {
  background: var(--primary);
  color: var(--background);
}
#contact-form-message {
  margin-top: 1rem;
  font-weight: bold;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 2rem;
}
.social-icons a {
  color: var(--text);
  transition: color 0.2s;
}
.social-icons a:hover {
  color: var(--primary);
}
.contact-cta {
  margin: 2rem 0;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
}
footer {
  background: var(--background);
  color: var(--text);
  padding: 2rem 1rem 1rem 1rem;
  text-align: center;
}
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.footer-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--primary);
}
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }
  .about-photo {
    margin-bottom: 1.5rem;
  }
  section {
    padding: 3rem 1rem;
  }
}
@media (min-width: 901px) {
  .about-content {
    justify-content: center;
    align-items: flex-start;
  }
  .about-text {
    max-width: 420px;
    flex: 1 1 420px;
    margin-right: 0;
  }
  .about-photo {
    flex: 0 0 250px;
    margin-left: 2rem;
  }
}
@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    display: none;
    background: rgba(24,26,27,0.98);
    position: absolute;
    top: 60px;
    left: 0;
    padding: 1rem 0;
    z-index: 1001;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }
}
@media (max-width: 500px) {
  .hero-content {
    padding: 0 1.2rem;
  }
  section {
    padding: 2rem 0.5rem;
    margin-bottom: 1.5rem;
  }
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .about-photo img {
    max-width: 90vw;
  }
  .about-gallery img {
    width: 60px;
    height: 40px;
  }
  .tab-content iframe {
    height: 60vw;
    min-height: 180px;
  }
  #booking-form, #contact-form {
    padding: 1rem;
  }
  .insta-banner {
    margin: 0.5rem;
    border-radius: 10px;
  }
}