/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --gold: #c9a84c;
  --gold-light: #e2c76a;
  --gold-dark: #a68a3e;
  --white: #f5f5f5;
  --gray: #888;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

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

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 2.5rem;
  letter-spacing: 2px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-light); }

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

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .hero-bg {
    background-image: url('images/hero-bg-mobile.jpeg');
    background-position: center center;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.15) 40%, rgba(10,10,10,0.4) 100%);
}

.hero-content {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
  animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--gray);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

/* ===== GALLERY / CAROUSEL ===== */
#gallery {
  padding: 80px 24px;
  background: var(--dark);
}

.carousel-wrapper {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-track-container {
  overflow: hidden;
  border-radius: 12px;
  flex: 1;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

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

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(10,10,10,0.8);
  color: var(--gold);
  font-size: 1.3rem;
  cursor: pointer;
  transition: 0.3s;
  flex-shrink: 0;
}
.carousel-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray);
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ===== SERVICES ===== */
#services {
  padding: 80px 24px;
  background: var(--black);
}

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

.service-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

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

.service-card h3 {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.service-desc {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}
.service-price span {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 400;
}

/* ===== CONTACT ===== */
#contact {
  padding: 80px 24px;
  background: var(--dark);
}

.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

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

.contact-info p {
  color: var(--gray);
  font-size: 1.05rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 16px 24px;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.2);
  transition: 0.3s;
}
.contact-link:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

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

.wa-icon { width: 24px; height: 24px; }

.whatsapp-link { color: #25d366; border-color: rgba(37,211,102,0.3); }
.whatsapp-link:hover { background: rgba(37,211,102,0.08); border-color: #25d366; }

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

.contact-form h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.2);
  background: var(--dark2);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form select { cursor: pointer; }
.contact-form select option { background: var(--dark2); }

.contact-form .btn { margin-top: 4px; width: 100%; text-align: center; }

/* ===== LOCATION ===== */
#location {
  padding: 80px 24px;
  background: var(--black);
}

.location-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  margin-bottom: 24px;
}

.map-container iframe { display: block; }

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-logo { height: 60px; margin-bottom: 12px; }

footer p { color: var(--gray); font-size: 0.85rem; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(10,10,10,0.98);
    padding: 20px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .section-title { font-size: 1.7rem; }
  .hero-tagline { font-size: 1rem; letter-spacing: 2px; }

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

  .carousel-btn { width: 36px; height: 36px; font-size: 1rem; }
}

/* ===== SOCIAL ===== */
#social {
  padding: 80px 24px;
  background: var(--black);
  text-align: center;
}

.social-subtitle {
  color: var(--gray);
  margin-bottom: 40px;
  font-size: 1rem;
}

.social-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}

.social-card {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 40px 32px;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.social-card h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin: 0;
}

.social-card p {
  color: var(--gray);
  margin: 0;
}

.instagram-icon {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-social {
  text-align: center;
  margin-top: 32px;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  background: #0a0a0a;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-instagram:hover {
  background: var(--gold);
  color: #0a0a0a;
}