@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600&display=swap");
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #f5f1e8;
  --dark: #1a1a1a;
  --gold: #d4af37;
  --brown: #8b7355;
  --light-gray: #e8e4dc;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(245, 241, 232, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  max-height: 100px;
  overflow: hidden;
}

nav .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: 2px;
  flex-wrap: nowrap;
}

nav ul {
  display: flex;
  gap: 3rem;
  list-style: none;
}

nav a {
  color: var(--dark);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--gold);
}
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-btn .bar {
  width: 24px;
  height: 3px;
  background: var(--dark);
  transition: 0.3s;
}

@media screen and (max-width: 900px) {
  .menu-btn {
    display: flex;
    z-index: 30;
  }
  nav .container {
    padding: 0 1.5rem;
  }

  nav ul {
    display: none;
  }
  .menu-btn.open .bar:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
  }
  .menu-btn.open .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-btn.open .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
  }
}

.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: var(--dark);
  padding: 4rem 2rem;
  transition: right 0.3s;
  z-index: 1000;
}
.sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sidebar a {
  color: var(--cream);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s;
}
.sidebar a:hover {
  color: var(--gold);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 3rem 4rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
  position: relative;
  min-width: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="100" x="50" fill="%23D4AF37" opacity="0.1"/><rect width="100" height="1" y="50" fill="%23D4AF37" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 5.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--dark);
  font-weight: 900;
}

.hero-text .subtitle {
  font-size: 1.3rem;
  color: var(--brown);
  margin-bottom: 3rem;
  line-height: 1.8;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
}

.btn-primary {
  padding: 1.2rem 3rem;
  background: var(--dark);
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: 2px solid var(--dark);
}

.btn-primary:hover {
  background: transparent;
  color: var(--dark);
}

.btn-secondary {
  padding: 1.2rem 3rem;
  background: transparent;
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  border: 2px solid var(--dark);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--dark);
  color: var(--cream);
}

.hero-image {
  position: relative;
  height: 600px;
}

.image-frame {
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1647140655214-e4a2d914971f?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8YmFyYmVyc2hvcHxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&q=60&w=900");
  position: relative;
  overflow: hidden;
  background-size: cover;
}

.image-frame::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.1;
  font-weight: 900;
  letter-spacing: 10px;
}

.image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--gold);
  z-index: -1;
}

/* Services Section */
.services {
  padding: 8rem 3rem;
  background: var(--cream);
}

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

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

.section-title h2 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-weight: 700;
}

.section-title p {
  font-size: 1.2rem;
  color: var(--brown);
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.service-card {
  background: white;
  padding: 4rem;
  border: 1px solid rgba(139, 115, 85, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
  height: 100%;
}

.service-number {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.service-card p {
  color: var(--brown);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 115, 85, 0.1);
}

.service-price {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--dark);
  font-weight: 700;
}

.service-duration {
  color: var(--brown);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Gallery Section */
.gallery {
  padding: 8rem 3rem;
  background: var(--light-gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.gallery-item {
  height: 400px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-label {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s;
}

.gallery-item:hover .gallery-label {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item:nth-child(1) {
  grid-row: span 2;
}

/* Gallery backgrounds */
.gallery-item:nth-child(1) {
  background-image: url("https://images.unsplash.com/photo-1608869776252-33ff061fabf2?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8N3x8Y2xhc3NpYyUyMGZhZGUlMjBoYWlyY3V0fGVufDB8fDB8fHww&auto=format&fit=crop&q=60&w=900");
  background-size: cover;
  background-position: center;
}

.gallery-item:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1701885183616-cf00e2db1a3b?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8bW9kZXJuJTIwdGV4dHVyZSUyMGhhaXJjdXR8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&q=60&w=900");
  background-size: cover;
  background-position: center;
}

.gallery-item:nth-child(3) {
  background-image: url("https://plus.unsplash.com/premium_photo-1663090795087-230ce6de3765?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NXx8YmVhcmQlMjBjdXR8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&q=60&w=900");
  background-size: cover;
  background-position: center;
}

.gallery-item:nth-child(4) {
  background-image: url("https://plus.unsplash.com/premium_photo-1661645788141-8196a45fb483?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8aGFpcmN1dHxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&q=60&w=900");
  background-size: cover;
  background-position: center;
}

.gallery-item:nth-child(5) {
  background-image: url("https://plus.unsplash.com/premium_photo-1661288502656-7265af3e6b23?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8ZXhlY3V0aXZlJTIwaGFpcmN1dHxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&q=60&w=900");
  background-size: cover;
  background-position: center;
}

/* Booking Section */
.booking {
  padding: 8rem 3rem;
  background: var(--cream);
}

.booking-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 5rem;
  border: 1px solid rgba(139, 115, 85, 0.1);
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5rem;
  position: relative;
}

.progress-bar::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: rgba(139, 115, 85, 0.2);
  z-index: 0;
}

.progress-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 2px solid rgba(139, 115, 85, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 600;
  color: var(--brown);
  transition: all 0.3s;
}

.progress-step.active .step-circle {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}

.step-label {
  font-size: 0.85rem;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-content {
  min-height: 400px;
}

.option-card {
  padding: 2.5rem;
  border: 2px solid rgba(139, 115, 85, 0.1);
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.option-card:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.option-card.selected {
  border-color: var(--dark);
  background: rgba(26, 26, 26, 0.03);
}

.option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.option-header h4 {
  font-size: 1.5rem;
  color: var(--dark);
}

.option-price {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--dark);
  font-weight: 700;
}

.option-description {
  color: var(--brown);
  line-height: 1.6;
}

input[type="date"] {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid rgba(139, 115, 85, 0.1);
  background: white;
  font-size: 1rem;
  color: var(--dark);
  font-family: "Inter", sans-serif;
  margin-bottom: 2rem;
  transition: border-color 0.3s;
}

input[type="date"]:focus {
  outline: none;
  border-color: var(--dark);
}
input[type="email"] {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid rgba(139, 115, 85, 0.1);
  background: white;
  font-size: 1rem;
  color: var(--dark);
  font-family: "Inter", sans-serif;
  margin-bottom: 2rem;
  transition: border-color 0.3s;
}
input[type="email"]:focus {
  outline: none;
  border-color: var(--dark);
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.time-slot {
  padding: 1.2rem;
  text-align: center;
  border: 2px solid rgba(139, 115, 85, 0.1);
  background: white;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.time-slot:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.time-slot.selected {
  border-color: var(--dark);
  background: var(--dark);
  color: white;
}

.booking-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}

.btn {
  padding: 1.2rem 3rem;
  border: 2px solid var(--dark);
  background: transparent;
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn:hover:not(:disabled) {
  background: var(--dark);
  color: white;
}

.btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.btn.filled {
  background: var(--dark);
  color: white;
}

.btn.filled:hover {
  background: transparent;
  color: var(--dark);
}

/* Contact Section */
.contact {
  padding: 8rem 3rem;
  background: var(--dark);
  color: white;
}

.contact .section-title h2 {
  color: white;
}

.contact .section-title p {
  color: var(--light-gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 4rem;
}

.contact-item {
  text-align: center;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 2rem;
}

.contact-item h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.contact-item p {
  color: var(--light-gray);
  line-height: 1.8;
}

/* Footer */
footer {
  background: #0f0f0f;
  padding: 3rem;
  text-align: center;
  color: var(--light-gray);
}

footer .logo {
  color: var(--gold);
  margin-bottom: 1rem;
}

.hidden {
  display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-text h1 {
    font-size: 4rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .time-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  nav ul {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 3rem;
  }

  .section-title h2 {
    font-size: 3rem;
  }

  .service-card {
    padding: 2.5rem;
  }

  .booking-container {
    padding: 3rem;
  }

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

  .gallery-item:nth-child(1) {
    grid-row: span 1;
  }
}
