:root {
  --bg-main: #0a0a0a;
  --bg-card: #141414;
  --bg-overlay: rgba(0, 0, 0, 0.8);
  --text-main: #ffffff;
  --text-dim: #a0a0a0;
  --accent: #d4af37;
  --accent-hover: #b39025;
  --font-main: "Inter", sans-serif;
  --font-display: "Playfair Display", serif;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title p {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--text-main);
}

.btn-primary {
  display: inline-block;
  background-color: var(--accent);
  color: #000;
  padding: 1rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 60px;
  width: auto;
}

nav ul {
  display: flex;
  gap: 2rem;
}

nav a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
}

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

/* Hero */
.hero {
  height: 100vh;
  background:
    linear-gradient(var(--bg-overlay), var(--bg-overlay)),
    url("../img/hero-bg.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

.hero-content {
  max-width: 800px;
}

.hero-content p:first-child {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p:nth-child(3) {
  font-size: 1.2rem;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Services */
#services {
  padding: 5rem 5%;
  background-color: var(--bg-main);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-card);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.service-card .price {
  display: block;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.service-card .duration {
  font-size: 0.85rem;
  color: var(--text-main);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* About */
#about {
  padding: 5rem 5%;
  background-color: var(--bg-card);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-img {
  flex: 1;
  position: relative;
}

.about-img::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  z-index: 0;
}

.about-img img {
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

/* Gallery - New Section */
#gallery {
  padding: 5rem 5%;
  background-color: var(--bg-main);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact/Location */
#contact {
  padding: 5rem 5%;
  background-color: var(--bg-card);
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  text-align: left;
}

.contact-item i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.contact-item h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-item p {
  color: var(--text-dim);
}

/* Booking */
#booking {
  padding: 5rem 5%;
  background:
    linear-gradient(var(--bg-overlay), var(--bg-overlay)),
    url("../img/interior-wide.jpg") no-repeat center center/cover;
  background-attachment: fixed;
}

.booking-form {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(20, 20, 20, 0.95);
  padding: 3rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.full-width {
  grid-column: 1 / -1;
}

label {
  font-size: 0.9rem;
  color: var(--text-dim);
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.8rem;
  color: var(--text-main);
  font-family: var(--font-main);
  border-radius: 2px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* Team Section */
#team {
  padding: 5rem 5%;
  background-color: var(--bg-main);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: var(--bg-card);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.team-img {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.team-card .specialty {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.social-links-small a {
  color: var(--text-dim);
  font-size: 1.2rem;
  margin: 0 0.5rem;
}
.social-links-small a:hover {
  color: var(--accent);
}

/* Testimonials */
#testimonials {
  padding: 5rem 5%;
  background:
    linear-gradient(var(--bg-overlay), var(--bg-overlay)),
    url("../img/hero-bg.png") no-repeat center center/cover;
  background-attachment: fixed;
}

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

.testimonial-card {
  background: rgba(20, 20, 20, 0.95);
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.stars {
  color: var(--accent);
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: var(--text-main);
}

.reviewer h4 {
  color: var(--accent);
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}

.reviewer span {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* FAQ */
#faq {
  padding: 5rem 5%;
  background-color: var(--bg-card);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: var(--bg-main);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  background: transparent;
  color: var(--text-main);
  padding: 1.5rem;
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-dim);
}

/* Footer */
footer {
  background-color: var(--bg-main);
  padding: 4rem 5%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.social-links a {
  color: var(--text-dim);
}

.social-links a:hover {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .about-container {
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    align-items: center;
    text-align: center;
  }

  nav {
    display: none; /* Mobile menu implementation usually needed here */
  }
}
