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

:root {
  --gold: #d4af37;
  --gold-hover: #f4d03f;
  --black: #000000;
  --dark-bg: #0a0a0a;
  --darker-bg: #0f0f0f;
  --zinc-900: #18181b;
  --zinc-950: #09090b;
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --text-muted: #c0c0c0;
  --whatsapp: #25d366;
  --whatsapp-hover: #20ba5a;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--gold-hover);
}

.desktop-nav {
  display: none;
  gap: 2rem;
}

.desktop-nav button {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.desktop-nav button:hover {
  color: var(--gold);
}

.mobile-nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.instagram-icon {
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.instagram-icon:hover {
  color: var(--gold);
}

.hamburger {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger svg {
  display: block;
}

.hamburger .close-icon {
  display: none;
}

.hamburger.active .menu-icon {
  display: none;
}

.hamburger.active .close-icon {
  display: block;
}

.mobile-menu {
  display: none;
  padding-bottom: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1rem;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-menu button:hover {
  color: var(--gold);
  background-color: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .header-content {
    height: 80px;
  }

  .desktop-nav {
    display: flex;
  }

  .mobile-nav-controls {
    display: none;
  }
}

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

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 1));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.text-gold {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.cta-button {
  background-color: var(--gold);
  color: var(--black);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--gold-hover);
  transform: scale(1.05);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 4.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }
}

/* About Section */
.about-section {
  padding: 5rem 1rem;
  background-color: var(--dark-bg);
}

.about-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-image {
  position: relative;
  height: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
}

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

.about-text p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .about-section {
    padding: 8rem 1rem;
  }

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

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

/* Gallery Section */
.gallery-section {
  padding: 5rem 1rem;
  background-color: var(--zinc-950);
}

.gallery-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--gold);
}

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

.gallery-item {
  position: relative;
  height: 160px;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  opacity: 0;
  transform: translateX(-2rem);
  transition: all 0.7s ease;
}

.gallery-item.visible {
  opacity: 1;
  transform: translateX(0);
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.gallery-overlay h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
}

@media (min-width: 768px) {
  .gallery-section {
    padding: 8rem 1rem;
  }

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

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

  .gallery-item {
    height: 320px;
  }

  .gallery-overlay {
    opacity: 0;
  }

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

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

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 110;
  background-color: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
  background-color: var(--gold-hover);
  transform: scale(1.1);
}

.lightbox-content {
  max-width: 80rem;
  width: 100%;
  animation: zoomIn 0.5s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-image-container {
  position: relative;
  height: 70vh;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.lightbox-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-info {
  text-align: center;
  animation: slideUp 0.7s ease 0.2s both;
}

@keyframes slideUp {
  from {
    transform: translateY(1rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.lightbox-info h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.lightbox-info p {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 1rem;
  background-color: var(--dark-bg);
}

.testimonials-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--zinc-900);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.testimonial-card p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-name {
  color: var(--gold) !important;
  font-weight: 600;
  margin-bottom: 0 !important;
}

@media (min-width: 768px) {
  .testimonials-section {
    padding: 8rem 1rem;
  }

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

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

/* Contact Section */
.contact-section {
  padding: 5rem 1rem;
  background-color: var(--zinc-950);
}

.contact-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}

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

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  background-color: var(--gold);
  color: var(--black);
  padding: 0.75rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.contact-label {
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.contact-value {
  color: var(--text-muted);
}

.hours {
  margin-top: 2rem;
}

.hours h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.hours p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.map-container {
  height: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-section {
    padding: 8rem 1rem;
  }

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

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

/* Footer */
.footer {
  background-color: var(--black);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2rem 1rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

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

.footer-info h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-info p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  background-color: #1a1a1a;
  color: var(--text-primary);
  padding: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--gold);
  color: var(--black);
}

.copyright {
  color: var(--text-muted);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-info {
    text-align: left;
  }
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  background-color: var(--whatsapp);
  color: var(--text-primary);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.1);
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(2rem);
  transition: all 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
