/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0a0a0a;
  color: #f2f2f2;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(212,175,55,1) 0px, rgba(212,175,55,1) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(212,175,55,0.7) 0px, rgba(212,175,55,0.7) 0.8px, transparent 1.2px),
    radial-gradient(circle, rgba(212,175,55,0.9) 0px, rgba(212,175,55,0.9) 1.2px, transparent 1.8px),
    radial-gradient(circle, rgba(212,175,55,0.6) 0px, rgba(212,175,55,0.6) 0.7px, transparent 1px),
    radial-gradient(circle, rgba(212,175,55,0.85) 0px, rgba(212,175,55,0.85) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(212,175,55,0.7) 0px, rgba(212,175,55,0.7) 1.3px, transparent 1.8px),
    radial-gradient(circle, rgba(212,175,55,0.5) 0px, rgba(212,175,55,0.5) 0.6px, transparent 1px),
    radial-gradient(circle, rgba(212,175,55,0.9) 0px, rgba(212,175,55,0.9) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(212,175,55,0.65) 0px, rgba(212,175,55,0.65) 0.8px, transparent 1.2px),
    radial-gradient(circle, rgba(212,175,55,0.8) 0px, rgba(212,175,55,0.8) 1.1px, transparent 1.6px),
    radial-gradient(circle, rgba(212,175,55,0.6) 0px, rgba(212,175,55,0.6) 0.7px, transparent 1px),
    radial-gradient(circle, rgba(212,175,55,0.75) 0px, rgba(212,175,55,0.75) 1px, transparent 1.4px),
    radial-gradient(circle, rgba(212,175,55,0.55) 0px, rgba(212,175,55,0.55) 0.9px, transparent 1.3px),
    radial-gradient(circle, rgba(212,175,55,0.9) 0px, rgba(212,175,55,0.9) 1.2px, transparent 1.7px),
    radial-gradient(circle, rgba(212,175,55,0.7) 0px, rgba(212,175,55,0.7) 0.8px, transparent 1.2px),
    radial-gradient(circle, rgba(212,175,55,0.6) 0px, rgba(212,175,55,0.6) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(212,175,55,0.8) 0px, rgba(212,175,55,0.8) 0.7px, transparent 1px),
    radial-gradient(circle, rgba(212,175,55,0.65) 0px, rgba(212,175,55,0.65) 1.1px, transparent 1.6px),
    radial-gradient(circle, rgba(212,175,55,0.85) 0px, rgba(212,175,55,0.85) 0.8px, transparent 1.2px),
    radial-gradient(circle, rgba(212,175,55,0.5) 0px, rgba(212,175,55,0.5) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(212,175,55,0.9) 0px, rgba(212,175,55,0.9) 0.6px, transparent 1px),
    radial-gradient(circle, rgba(212,175,55,0.7) 0px, rgba(212,175,55,0.7) 1.3px, transparent 1.8px),
    radial-gradient(circle, rgba(212,175,55,0.75) 0px, rgba(212,175,55,0.75) 0.9px, transparent 1.3px),
    radial-gradient(circle, rgba(212,175,55,0.6) 0px, rgba(212,175,55,0.6) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(212,175,55,0.8) 0px, rgba(212,175,55,0.8) 0.7px, transparent 1.1px);
  background-position:
    23px 47px, 89px 134px, 156px 23px, 201px 178px, 67px 289px,
    312px 56px, 378px 201px, 134px 312px, 245px 89px, 289px 267px,
    45px 189px, 167px 356px, 323px 134px, 12px 267px, 234px 45px,
    356px 312px, 78px 78px, 189px 234px, 267px 356px, 334px 23px,
    101px 201px, 212px 145px, 145px 267px, 289px 189px, 367px 145px;
  background-size: 400px 400px;
  background-repeat: repeat;
  opacity: 0.6;
}

body {
  width: 100%;
  max-width: 100vw;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Logo */
.logo {
  font-family: 'Prata', serif;
  font-size: 2.8rem;
  letter-spacing: 1px;
  color: #ffffff; /* Light pink */
}

.logo-text {
  font-family: 'Prata', serif;
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* Header */
.site-header {
  background-color: #000;
  padding: 40px 0 20px;
  text-align: center;
  border-bottom: 1px solid #333;
}

.logo-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.logo-img {
  width: 90px;
  height: auto;
  margin-bottom: 10px;
}

.logo-link {
  text-decoration: none;
  color: inherit;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navigation */

.site-nav .nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: #f2f2f2;
  font-weight: bold;
  transition: color 0.3s;
}

.site-nav a {
  text-decoration: none;
  color: #f2f2f2;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
}

.site-nav a:hover {
  color: #d4af37;
  text-shadow: 0 0 5px #c19a2e, 0 0 10px #d4af37, 0 0 15px #e6c563;
}


/* Burger Menu */
.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 1000;
  padding: 10px;
}

.burger .line {
  width: 25px;
  height: 3px;
  background: #d4af37;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .site-nav {
    width: 100%;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: #000;
    flex-direction: column;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    padding-top: 80px;
    transition: right 0.3s ease;
    border-left: 2px solid #d4af37;
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    margin: 0;
    text-align: left;
    padding: 0;
    border-bottom: 1px solid #222;
  }

  .nav-links li a {
    display: block;
    padding: 20px 30px;
    width: 100%;
  }

  .nav-links li a:hover {
    background-color: #111;
  }
}

@media (min-width: 769px) {
  .nav-links {
    display: flex;
    gap: 20px;
    position: static;
    flex-direction: row;
  }
}

/* Hero Section */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: rgba(0, 0, 0, 0.267); /* Optional dark overlay */
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}


.hero-overlay h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #fff;
}

/* Gold Glowing Button */
.btn-primary.glow {
  background: #d4af37;
  color: #000;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary.glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, #fff9d1, transparent);
  transform: skewX(-25deg);
  opacity: 0.6;
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}



/* Sections */
.service-row {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
}

.service-row.reverse {
  flex-direction: row-reverse;
}


.service-row img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10%;
  flex: 1 1 40%;
  margin:10px;
}

.service-content {
  flex: 1 1 50%;
}

.service-content h3 {
  font-size: 5rem;
  color: #d4af37;
  margin-bottom: 10px;
  text-align: center;
}

.service-content p {
  font-size: 1.5rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}

.btn-service {
  display: block;
  background: #d4af37;
  color: #000;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 auto;
  width: fit-content;
  position: relative;
  overflow: hidden;
}

.btn-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, #fff9d1, transparent);
  transform: skewX(-25deg);
  opacity: 0.6;
  animation: shine 3s infinite;
}

.btn-service:hover {
  background: #f0c64f;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.section-title {
  font-size: 3rem;
  text-align:center;
  margin: 20px;
  padding-top: 90px;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .service-row,
  .service-row.reverse {
    flex-direction: column;
    text-align: center;
  }
}

.reveal-left, .reveal-right, .reveal-top {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-top {
  transform: translateY(-50px);
}

.reveal-left.active,
.reveal-right.active,
.reveal-top.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* About Section */
.about-section {
  padding: 80px 0;
  background-color: #111;
  padding-top: 20px;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ddd;
}

.about-image {
  flex: 1 1 40%;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 30px 0;
  padding: 30px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

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

.highlight-item h4 {
  font-size: 1.8rem;
  color: #d4af37;
  margin-bottom: 8px;
  font-weight: bold;
}

.highlight-item p {
  font-size: 0.95rem;
  color: #bbb;
  margin: 0;
}

.btn-secondary {
  background: transparent;
  color: #d4af37;
  padding: 12px 28px;
  border: 2px solid #d4af37;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #d4af37;
  color: #000;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background-color: #111;
}

.team-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.team-member {
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #d4af37;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.team-member:hover .team-image {
  border-color: #f0c64f;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

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

.team-member h3 {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  color: #d4af37;
  margin-bottom: 8px;
}

.team-role {
  font-size: 1rem;
  color: #999;
  margin-bottom: 12px;
  font-weight: 600;
}

.team-bio {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.6;
  max-width: 250px;
  margin: 0 auto;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: #000;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  border-color: #d4af37;
}

.stars {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.9rem;
  color: #d4af37;
  font-weight: bold;
  text-align: right;
}

/* Instagram Section */
.instagram-section {
  padding: 80px 0;
  background-color: #111;
}

.instagram-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #d4af37;
  margin-bottom: 30px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.instagram-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1/1;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Footer */
.site-footer {
  background-color: #0a0a0a;
  color: #ddd;
  padding: 60px 0 20px;
  border-top: 1px solid #333;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-section h4 {
  font-size: 1.2rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #bbb;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #d4af37;
}

.footer-social {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  margin-bottom: 20px;
}

.footer-social a {
  color: #ddd;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #d4af37;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #777;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #d4af37 50%, #1a1a1a 75%, #000000 100%);
  padding: 100px 0 80px;
  text-align: center;
  border-bottom: 2px solid #d4af37;
}

.page-title {
  font-family: 'Prata', serif;
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Detail Section */
.services-detail-section {
  padding: 80px 0;
  background-color: #000;
}

.service-category {
  margin-bottom: 80px;
}

.category-title {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  color: #d4af37;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  width: 100%;
}

.service-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.service-item {
  background-color: #111;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: #d4af37;
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.service-info {
  flex: 1;
}

.service-info h3 {
  font-size: 1.5rem;
  color: #d4af37;
  margin-bottom: 10px;
}

.service-info p {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
}

.service-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  min-width: 120px;
}

.price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #d4af37;
  margin-bottom: 5px;
}

.duration {
  font-size: 0.9rem;
  color: #999;
}

/* Services CTA */
.services-cta {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #d4af37 50%, #1a1a1a 75%, #000000 100%);
  padding: 80px 0;
  text-align: center;
}

.services-cta h2 {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.services-cta p {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Tablet Responsive (481px - 1024px) */
@media (max-width: 1024px) {
  .container {
    width: 95%;
  }

  .service-content h3 {
    font-size: 3.5rem;
  }

  .service-content p {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .hero-overlay h2 {
    font-size: 2rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }
}

@media (max-width: 968px) {
  .service-row {
    gap: 30px;
  }

  .service-content h3 {
    font-size: 3rem;
  }

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

  .page-title {
    font-size: 3rem;
  }
}

/* Mobile Responsive (max-width: 768px) */
@media (max-width: 768px) {
  .logo-text {
    font-size: 2rem;
  }

  .logo-img {
    width: 70px;
  }

  .hero-slider {
    height: 70vh;
  }

  .hero-overlay h2 {
    font-size: 1.8rem;
  }

  .hero-overlay p {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 2rem;
    padding-top: 60px;
    margin: 15px;
  }

  .service-row,
  .service-row.reverse {
    flex-direction: column;
    text-align: center;
    padding-top: 20px;
  }

  .service-content h3 {
    font-size: 2.5rem;
  }

  .service-content p {
    font-size: 1.2rem;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px 0;
    padding: 20px 0;
  }

  .team-section {
    padding: 60px 0;
  }

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

  .team-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .instagram-section {
    padding: 60px 0;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-social a {
    margin: 0 10px;
    font-size: 0.9rem;
  }

  .footer-section h3 {
    font-size: 1.3rem;
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .page-hero {
    padding: 80px 0 60px;
  }

  .service-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 25px;
  }

  .service-price {
    align-items: flex-start;
    text-align: left;
    margin-top: 15px;
  }

  .category-title {
    font-size: 2rem;
  }

  .services-cta,
  .gallery-cta {
    padding: 60px 0;
  }

  .services-cta h2,
  .gallery-cta h2 {
    font-size: 2rem;
  }

  .services-cta p,
  .gallery-cta p {
    font-size: 1rem;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .logo-text {
    font-size: 1.6rem;
  }

  .logo-img {
    width: 60px;
  }

  .site-header {
    padding: 30px 0 15px;
  }

  .hero-slider {
    height: 60vh;
  }

  .hero-overlay {
    top: 25%;
    height: 40%;
    padding: 0 15px;
  }

  .hero-overlay h2 {
    font-size: 1.5rem;
  }

  .hero-overlay p {
    font-size: 0.85rem;
  }

  .btn-primary.glow {
    padding: 10px 22px;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.8rem;
    padding-top: 50px;
  }

  .service-content h3 {
    font-size: 2rem;
  }

  .service-content p {
    font-size: 1rem;
  }

  .btn-service {
    padding: 10px 25px;
    font-size: 0.95rem;
  }

  .about-section,
  .team-section,
  .testimonials-section,
  .instagram-section {
    padding: 50px 0;
  }

  .about-text p {
    font-size: 1rem;
  }

  .highlight-item h4 {
    font-size: 1.5rem;
  }

  .highlight-item p {
    font-size: 0.85rem;
  }

  .team-image {
    width: 180px;
    height: 180px;
  }

  .team-member h3 {
    font-size: 1.3rem;
  }

  .team-role {
    font-size: 0.95rem;
  }

  .team-bio {
    font-size: 0.9rem;
  }

  .testimonial-card {
    padding: 25px;
  }

  .stars {
    font-size: 1.1rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

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

  .instagram-subtitle {
    font-size: 1.1rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 0.95rem;
  }

  .page-hero {
    padding: 60px 0 50px;
  }

  .service-item {
    padding: 20px;
  }

  .service-info h3 {
    font-size: 1.3rem;
  }

  .service-info p {
    font-size: 0.95rem;
  }

  .price {
    font-size: 1.5rem;
  }

  .duration {
    font-size: 0.85rem;
  }

  .category-title {
    font-size: 1.8rem;
  }

  .services-cta h2,
  .gallery-cta h2 {
    font-size: 1.8rem;
  }

  .services-cta p,
  .gallery-cta p {
    font-size: 0.95rem;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}

/* Booking Section */
.booking-section {
  padding: 80px 0;
  background-color: #000;
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.booking-info h2 {
  font-family: 'Prata', serif;
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 20px;
}

.booking-info p {
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 30px;
}

.booking-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.detail-item h3 {
  font-size: 1.2rem;
  color: #d4af37;
  margin-bottom: 10px;
}

.detail-item p {
  font-size: 0.95rem;
  color: #bbb;
  margin-bottom: 5px;
  line-height: 1.6;
}

/* Booking Form */
.booking-form-container {
  background-color: #111;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 40px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.95rem;
  color: #d4af37;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 12px 15px;
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.booking-form button[type="submit"] {
  margin-top: 10px;
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
}

/* Responsive Booking Form */
@media (max-width: 968px) {
  .booking-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-info {
    text-align: center;
  }

  .booking-details {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .booking-section {
    padding: 60px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .booking-form-container {
    padding: 30px 20px;
  }

  .booking-info h2 {
    font-size: 1.8rem;
  }

  .booking-info p {
    font-size: 1rem;
  }

  .detail-item h3 {
    font-size: 1.1rem;
  }

  .detail-item p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .booking-section {
    padding: 50px 0;
  }

  .booking-form-container {
    padding: 25px 15px;
  }

  .booking-info h2 {
    font-size: 1.6rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.95rem;
    padding: 10px 12px;
  }

  .booking-form button[type="submit"] {
    padding: 12px;
    font-size: 1rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: #000;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Prata', serif;
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: start;
}

.contact-icon {
  font-size: 2rem;
  min-width: 40px;
}

.contact-item h3 {
  font-size: 1.2rem;
  color: #d4af37;
  margin-bottom: 8px;
}

.contact-item p {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 5px;
}

.small-text {
  font-size: 0.9rem !important;
  color: #999 !important;
  margin-top: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  color: #d4af37;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #f0c64f;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.opening-hours-box {
  background-color: #111;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 30px;
  margin-top: 20px;
}

.opening-hours-box h3 {
  font-size: 1.3rem;
  color: #d4af37;
  margin-bottom: 20px;
  text-align: center;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #222;
}

.hour-row:last-child {
  border-bottom: none;
}

.day {
  color: #ddd;
  font-size: 1rem;
}

.time {
  color: #d4af37;
  font-weight: 600;
  font-size: 1rem;
}

/* Contact Form */
.contact-form-container {
  background-color: #111;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 40px;
}

.contact-form-container h2 {
  font-family: 'Prata', serif;
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 30px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form button[type="submit"] {
  margin-top: 10px;
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
}

/* Map Section */
.map-section {
  background-color: #111;
  border-top: 1px solid #333;
}

.map-placeholder {
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #d4af37 50%, #1a1a1a 75%, #000000 100%);
  color: #d4af37;
}

.map-placeholder p {
  font-size: 3rem;
  margin: 10px 0;
}

.map-note {
  font-size: 1.2rem !important;
  color: #ddd !important;
}

/* Responsive Contact Page */
@media (max-width: 968px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .contact-form-container h2 {
    font-size: 1.8rem;
  }

  .contact-info h2 {
    font-size: 1.8rem;
  }

  .contact-info > p {
    font-size: 1rem;
  }

  .contact-item h3 {
    font-size: 1.1rem;
  }

  .contact-item p {
    font-size: 0.95rem;
  }

  .contact-icon {
    font-size: 1.5rem;
  }

  .opening-hours-box {
    padding: 25px;
  }

  .opening-hours-box h3 {
    font-size: 1.2rem;
  }

  .day,
  .time {
    font-size: 0.95rem;
  }

  .map-placeholder {
    height: 300px;
  }

  .map-placeholder p {
    font-size: 2rem;
  }

  .map-note {
    font-size: 1rem !important;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 50px 0;
  }

  .contact-form-container {
    padding: 25px 15px;
  }

  .contact-form-container h2 {
    font-size: 1.6rem;
  }

  .contact-info h2 {
    font-size: 1.6rem;
  }

  .contact-item {
    gap: 15px;
  }

  .contact-icon {
    font-size: 1.3rem;
    min-width: 30px;
  }

  .opening-hours-box {
    padding: 20px;
  }

  .hour-row {
    padding: 10px 0;
  }

  .day,
  .time {
    font-size: 0.9rem;
  }

  .contact-form button[type="submit"] {
    padding: 12px;
    font-size: 1rem;
  }

  .map-placeholder {
    height: 250px;
  }

  .map-placeholder p {
    font-size: 1.5rem;
  }

  .map-note {
    font-size: 0.9rem !important;
  }
}

/* Gallery Filter Section */
.gallery-filter-section {
  padding: 40px 0;
  background-color: #111;
  border-bottom: 1px solid #333;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.filter-btn:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.filter-btn.active {
  background: #d4af37;
  color: #000;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background-color: #000;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 3/4;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.gallery-item.show {
  opacity: 1;
  transform: scale(1);
}

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-family: 'Prata', serif;
  font-size: 1.3rem;
  color: #d4af37;
  margin-bottom: 5px;
}

.gallery-overlay p {
  font-size: 0.95rem;
  color: #ddd;
  margin: 0;
}

/* Gallery CTA */
.gallery-cta {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #d4af37 50%, #1a1a1a 75%, #000000 100%);
  padding: 80px 0;
  text-align: center;
}

.gallery-cta h2 {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.gallery-cta p {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Gallery */
@media (max-width: 968px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }

  .gallery-filter-section {
    padding: 30px 0;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }

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

  .filter-buttons {
    gap: 10px;
  }

  .filter-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .gallery-overlay h3 {
    font-size: 1.2rem;
  }

  .gallery-overlay p {
    font-size: 0.85rem;
  }

  .gallery-cta h2 {
    font-size: 2rem;
  }

  .gallery-cta p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 50px 0;
  }

  .gallery-filter-section {
    padding: 25px 0;
  }

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

  .filter-buttons {
    gap: 8px;
  }

  .gallery-item {
    aspect-ratio: 4/5;
  }

  .gallery-overlay {
    padding: 20px 15px 15px;
  }

  .gallery-overlay h3 {
    font-size: 1.1rem;
  }

  .gallery-overlay p {
    font-size: 0.8rem;
  }
}

