@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --pink-light: #fdf2f5;
  --pink: #f0c4d4;
  --pink-medium: #e8a0b4;
  --pink-dark: #d4708f;
  --gold: #c9a96e;
  --gold-light: #e8d5a8;
  --gold-dark: #a8884a;
  --white: #ffffff;
  --text-dark: #2c2c2c;
  --text-medium: #5a5a5a;
  --text-light: #8a8a8a;
  --bg-cream: #fefbf7;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: var(--gold-dark);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--pink-dark);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
}

.hero-logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3)) brightness(0) invert(1);
}

.footer-logo {
  width: 80px;
  height: auto;
  margin-bottom: 12px;
  filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(350deg);
  opacity: 0.8;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(201, 169, 110, 0.3));
  transition: transform 0.3s ease;
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--pink-dark);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-medium);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 194, 212, 0.7) 0%, rgba(201, 169, 110, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 700px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  font-weight: 300;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold-dark);
  border: 2px solid var(--gold);
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* Page Header */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--bg-cream) 100%);
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.section-title p {
  color: var(--text-medium);
  font-size: 1.05rem;
}

/* Services Preview (Home) */
.services-preview {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-cream);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--gold-light);
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.service-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold-dark);
  font-weight: 600;
}

/* Services Page - Full Menu */
.services-menu {
  background: var(--white);
}

.menu-category {
  margin-bottom: 50px;
}

.menu-category h3 {
  font-size: 1.6rem;
  color: var(--pink-dark);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pink);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--pink-light);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-info {
  flex: 1;
  padding-right: 20px;
}

.menu-item-info h4 {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.menu-item-info p {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--gold-dark);
  font-weight: 600;
  white-space: nowrap;
}

/* About / Why Choose Us */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.features-list {
  list-style: none;
  margin-top: 20px;
}

.features-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-medium);
}

.features-list li::before {
  content: '\2726';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
  background: var(--pink-light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-light);
  font-style: italic;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* Booking Section */
.booking-section {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--bg-cream) 50%, var(--pink-light) 100%);
}

.booking-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.booking-content h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.booking-content p {
  color: var(--text-medium);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.booking-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.booking-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.booking-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.booking-card h4 {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
}

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

.booking-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold-dark);
  font-weight: 600;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.contact-info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--pink-dark);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail .icon {
  font-size: 1.3rem;
  color: var(--gold);
  min-width: 30px;
  text-align: center;
  padding-top: 2px;
}

.contact-detail h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-detail p {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  min-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Messenger Button */
.messenger-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 30px;
  background: #0084FF;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
  box-shadow: 0 4px 20px rgba(0, 132, 255, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  animation: fab-pulse 2s ease-in-out 3;
}

.messenger-fab i {
  font-size: 1.4rem;
}

.messenger-fab:hover {
  transform: scale(1.05);
  background: #0073e6;
}

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 132, 255, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(0, 132, 255, 0.7); transform: scale(1.05); }
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer h4 {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
  font-size: 1.1rem;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-2px);
}

/* Special Notes */
.special-notes {
  background: var(--pink-light);
  border-radius: 12px;
  padding: 30px;
  margin-top: 40px;
}

.special-notes h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--pink-dark);
}

.special-notes ul {
  list-style: none;
}

.special-notes li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-medium);
  font-size: 0.95rem;
}

.special-notes li::before {
  content: '\2726';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Transformations */
.transformations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.transformation-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.transformation-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.transformation-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

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

.transformation-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.transformation-caption {
  padding: 16px;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-top: 3px solid var(--gold);
}

.review-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text-medium);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.review-author {
  color: var(--pink-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--pink);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.faq-item summary {
  padding: 18px 24px;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  padding: 0 24px 18px;
  color: var(--text-medium);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item a {
  color: var(--gold-dark);
  font-weight: 600;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--pink-dark), var(--gold));
  padding: 60px 0;
  text-align: center;
  color: white;
}

.cta-banner h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-logo img {
    height: 40px;
  }

  .nav-logo span {
    font-size: 1rem;
  }

  .hero {
    min-height: 500px;
  }

  .hero-logo {
    width: 80px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero-content .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
    display: block;
    margin: 8px auto;
    max-width: 250px;
  }

  .hero-content .btn + .btn {
    margin-left: auto;
  }

  .section {
    padding: 50px 0;
  }

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

  .page-header {
    padding: 110px 0 40px;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

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

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

  .menu-item {
    flex-direction: column;
    gap: 4px;
  }

  .menu-item-price {
    font-size: 1rem;
  }

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

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

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

  .map-container {
    min-height: 300px;
  }

  .booking-methods {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-banner {
    padding: 40px 0;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }


  .special-notes {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

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

  .nav-logo span {
    font-size: 0.85rem;
  }

  .container {
    padding: 0 16px;
  }
}
