/*
Theme Name: Naré Weddings
Theme URI: https://example.com
Author: Naré Weddings
Author URI: https://example.com
Description: Tema de mantenimiento elegante para Naré Weddings con fondo carrusel, botones a Instagram/contacto y soporte ACF.
Version: 1.0
Text Domain: nare-weddings
*/

@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

@font-face {
  font-family: 'Pavot';
  src: url('fonts/Pavot-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark: #30241B;
  --soft-blue: #C1D3D7;
  --cream: #E1D8CB;
  --white: #F9F6F2;
  --text: #1C150F;
  --fade: rgba(48, 36, 27, .72);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  font-family: 'Questrial', Arial, Helvetica, sans-serif;
  color: var(--white);
  background: var(--dark);
  overflow: hidden;
}

body {
  position: relative;
  font-weight: 300;
}

.theme-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.gallery-carousel {
  position: absolute;
  inset: 0;
  display: grid;
}

.gallery-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: scale(1.08);
  background-size: cover;
  background-position: center;
  transition: opacity .9s ease, transform 1.2s ease;
}

.gallery-slide.active {
  opacity: 1;
  transform: scale(1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(48, 36, 27, .16) 0%, rgba(48, 36, 27, .88) 70%);
  pointer-events: none;
}

.maintenance-panel {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px clamp(20px, 4vw, 64px);
  text-align: center;
}

.content-box {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Pavot', Georgia, serif;
  color: var(--white);
}

.brand-logo {
  display: block;
  width: min(672px, 57.4vw);
  height: auto;
  margin: 0 auto;
}

.intro {
  margin: 28px auto 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 42rem;
  color: rgba(249, 246, 242, .92);
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 16px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 300;
  transition: transform .24s ease, box-shadow .24s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 60px rgba(0,0,0,.24);
}

.btn-primary {
  background: rgba(193, 211, 215, .98);
  color: var(--dark);
}

.btn-secondary {
  background: rgba(229, 216, 203, .9);
  color: var(--text);
}

@media (max-width: 680px) {
  .maintenance-panel {
    padding: 28px 18px;
  }

  .brand-logo {
    width: min(64.4vw, 392px);
  }

  .buttons {
    flex-direction: column;
    align-items: stretch;
  }
}
