:root{
  --cream:#fbf6f1;
  --cream2:#fffdf9;
  --orange:#f2a168;
  --orange2:#f7bf92;
  --orange3:#ffcfaa;
  --ink:#201a16;
  --muted:rgba(32,26,22,.72);
  --line:rgba(32,26,22,.12);
  --shadow: 0 18px 45px rgba(32,26,22,.10);
  --shadow2: 0 10px 24px rgba(32,26,22,.10);
  --radius:24px;
  --radius2:18px;
  --wrap:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(900px 600px at 18% 0%, rgba(242,161,104,.10), transparent 65%),
    radial-gradient(800px 520px at 88% 10%, rgba(255,248,240,.98), transparent 70%),
    radial-gradient(700px 460px at 50% 100%, rgba(247,191,146,.08), transparent 65%),
    var(--cream2);
}

a{color:inherit}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 18px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* Header */
.site-header{
  position:sticky;top:0;z-index:60;
  backdrop-filter: blur(14px);
  background: rgba(251,242,230,.84);
  border-bottom:1px solid var(--line);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:12px 0}
.brand{display:flex;align-items:center;gap:10px;text-decoration:none}
.brand-mark{
  display:inline-grid;place-items:center;
  width:36px;height:36px;border-radius:14px;
  background: rgba(255,255,255,.6);
  border:1px solid var(--line);
  box-shadow: 0 10px 20px rgba(32,26,22,.06);
}
.brand-text{font-weight:800;letter-spacing:.2px}
.site-nav .menu{display:flex;gap:6px;list-style:none;margin:0;padding:0}
.site-nav .menu a{
  opacity:.92;text-decoration:none;
  padding:10px 12px;border-radius:999px;
}
.site-nav .menu a:hover{background:rgba(32,26,22,.05)}
.site-nav .menu a:focus-visible{outline:3px solid rgba(242,161,104,.35);outline-offset:2px}

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background:rgba(255,255,255,.70);
  color:var(--ink);
  border-radius:14px;
  padding:10px 12px;
  box-shadow: 0 10px 18px rgba(32,26,22,.06);
}
.burger{display:block;width:18px;height:2px;background:var(--ink);position:relative;opacity:.9}
.burger::before,.burger::after{content:"";position:absolute;left:0;width:18px;height:2px;background:var(--ink)}
.burger::before{top:-6px}.burger::after{top:6px}

/* Gutenberg main */
.boda-page{padding-bottom:36px}

/* Hero */
.boda-hero{
  border-bottom: 1px solid rgba(255,255,255,.20);
}
.boda-hero .wp-block-cover__background{
  background:
    radial-gradient(780px 520px at 30% 20%, rgba(242,161,104,.55), transparent 60%),
    radial-gradient(780px 560px at 85% 25%, rgba(255,248,240,.22), transparent 62%),
    linear-gradient(180deg, rgba(32,26,22,.46), rgba(32,26,22,.18));
}
.boda-hero .wp-block-cover__image-background{
  filter: saturate(1.02) contrast(1.02);
}
.boda-hero-inner{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 86px 18px 68px;
}
.boda-kicker{
  display:inline-flex;align-items:center;gap:10px;
  margin:0 0 12px;
  padding:8px 14px;
  border-radius:999px;
  background: rgba(251,242,230,.90);
  color: rgba(32,26,22,.84);
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 12px 26px rgba(32,26,22,.10);
}
.boda-title{
  margin:0 0 10px;
  font-size: clamp(48px, 6vw, 86px);
  line-height:1.01;
  letter-spacing:-1px;
  color:#fff;
  text-shadow: 0 16px 36px rgba(0,0,0,.30);
}
.boda-sub{
  margin:0 0 24px;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,.92);
}
.boda-note{margin-top:14px;color:rgba(255,255,255,.80);font-size:13px}

/* Buttons (Gutenberg) */
.wp-block-buttons{gap:12px}
.wp-block-button__link{
  border-radius: 999px !important;
  padding: 13px 20px !important;
  font-weight: 800;
  letter-spacing:.2px;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.wp-block-button__link:hover{transform: translateY(-1px)}
.wp-block-button__link:active{transform: translateY(0)}
.wp-block-button.is-style-fill .wp-block-button__link{
  background: linear-gradient(135deg, var(--orange), var(--orange2)) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 18px 40px rgba(242,161,104,.30);
}
.wp-block-button.is-style-fill .wp-block-button__link:hover{filter:saturate(1.02)}
.wp-block-button.is-style-outline .wp-block-button__link{
  background: rgba(255,255,255,.12) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.60) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
}

/* Typography */
h1,h2,h3{color:var(--ink)}
h2{font-size:32px;letter-spacing:-.4px;margin:0 0 14px}
h3{font-size:20px;letter-spacing:-.2px;margin:0 0 10px}
p,li{color:var(--muted);line-height:1.65}
strong{color:var(--ink)}

/* Sections */
.boda-section{
  padding: 62px 0;
}
.boda-section > .wp-block-group__inner-container,
.boda-section.wp-block-group{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 18px;
}
.boda-alt{
  background: rgba(255,255,255,.62);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Columns spacing */
.boda-columns{gap:18px}
@media (max-width: 860px){
  .boda-columns{gap:14px}
}

/* Card feel inside content */
.boda-section .wp-block-columns > .wp-block-column{
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(32,26,22,.10);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow2);
}
.boda-alt .wp-block-columns > .wp-block-column{
  background: rgba(251,242,230,.70);
}

/* Images */
.boda-image img{
  width:100%;
  height:auto;
  border-radius: var(--radius);
  border: 1px solid rgba(32,26,22,.12);
  box-shadow: var(--shadow);
}
.wp-block-cover .wp-block-cover__image-background{
  transform: scale(1.02);
}

/* Timeline */
.boda-timeline .boda-time-row{
  border: 1px solid rgba(32,26,22,.12);
  border-radius: 20px;
  padding: 10px 12px;
  margin: 12px 0;
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 22px rgba(32,26,22,.06);
}
.boda-time{margin:0;font-weight:900;color:var(--ink)}
.boda-time-text{margin:0;color:rgba(32,26,22,.78)}

/* Gallery */
.boda-gallery img{
  border-radius: 20px;
  border: 1px solid rgba(32,26,22,.12);
  box-shadow: 0 12px 26px rgba(32,26,22,.08);
}

/* Footer */
.boda-footer{
  padding: 34px 18px 14px;
  color: rgba(32,26,22,.75);
}
.boda-footer a{
  text-decoration:none;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(32,26,22,.10);
  background: rgba(255,255,255,.55);
}
.boda-footer a:hover{background: rgba(255,255,255,.72)}
.boda-mini{font-size:13px}

/* Mobile nav */
@media (max-width: 760px){
  .nav-toggle{display:inline-flex}
  .site-nav{display:none;position:absolute;left:0;right:0;top:62px;background: rgba(251,242,230,.96);border-bottom:1px solid var(--line)}
  .site-nav.is-open{display:block}
  .site-nav .menu{flex-direction:column;padding:10px 14px 14px;gap:6px}
  .site-nav .menu a{padding:12px 14px}
  .boda-hero-inner{padding:72px 18px 60px}
  .boda-section{padding:54px 0}
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .wp-block-button__link{transition:none}
}


.boda-stack{
  display:flex;
  flex-direction:column;
  gap:28px;
}
.boda-card{
  background: rgba(255,255,255,.72);
  border:1px solid rgba(32,26,22,.10);
  border-radius:26px;
  padding:24px;
  box-shadow:0 14px 32px rgba(32,26,22,.08);
}


/* Premium touches */
.boda-title{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  letter-spacing: -0.6px;
}
.boda-sep-light{
  max-width: 220px;
  margin: 18px 0 20px !important;
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.70), rgba(255,255,255,0));
}
.boda-sep{
  max-width: 340px;
  margin: 18px 0 18px !important;
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(32,26,22,0), rgba(32,26,22,.18), rgba(32,26,22,0));
}
.boda-monogram{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 34px;
  letter-spacing: 6px;
  margin: 0 0 10px !important;
  color: rgba(32,26,22,.82);
}
.boda-monogram span{color: rgba(242,161,104,.90)}
/* Slightly lighter cards for the clearer background */
.boda-card{background: rgba(255,255,255,.78);}


/* Animations (subtle) */
@media (prefers-reduced-motion: no-preference){
  .boda-hero-inner{
    animation: bodaFadeUp .9s ease both;
  }
  @keyframes bodaFadeUp{
    from{opacity:0; transform: translate3d(0,10px,0)}
    to{opacity:1; transform: translate3d(0,0,0)}
  }

  .boda-hero .wp-block-button__link{
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, opacity .35s ease;
  }

  /* reveal on scroll */
  .boda-reveal{
    opacity:0;
    transform: translate3d(0,14px,0);
    transition: opacity .65s ease, transform .65s ease;
    will-change: opacity, transform;
  }
  .boda-reveal.in-view{
    opacity:1;
    transform: translate3d(0,0,0);
  }

  /* tiny hover polish */
  .boda-card{transition: transform .18s ease, box-shadow .18s ease}
  .boda-card:hover{transform: translateY(-1px); box-shadow: 0 18px 42px rgba(32,26,22,.10)}
}

/* Intro text */
.boda-intro-title{margin:0 0 14px;font-family: ui-serif, Georgia, 'Times New Roman', Times, serif;letter-spacing:-.3px}
.boda-intro p{max-width: 860px}


/* Force background */
html, body{
  background: #fefdfb !important;
}
.boda-page{
  background: #fefdfb !important;
}


/* Side-by-side cards (image full, text aside) */
.boda-card .boda-card-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}
.boda-card .boda-card-grid.is-right{
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
}
.boda-card .boda-card-media{
  margin: 0 !important;
}
.boda-card .boda-card-media img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.boda-card .boda-card-body h3{
  margin-top: 0 !important;
}
@media (max-width: 820px){
  .boda-card .boda-card-grid,
  .boda-card .boda-card-grid.is-right{
    grid-template-columns: 1fr;
  }
}


/* Smooth movements */
html{
  scroll-behavior: smooth;
}

/* ===== v10 Elegant flat style ===== */

/* Global background */
html, body, .boda-page{
  background:#fefdfb !important;
}

/* Remove shadows */
.boda-card{
  box-shadow:none !important;
}

/* Flat cards + gentle border separator */
.boda-card{
  border:none;
  background:transparent;
  padding:0;
}

/* Image blending (optional) */
.boda-card-media img,
.boda-image img{
  background:#fefdfb;
  border-radius:0 !important;
}

/* Make images blend with background softly (won't break if unsupported) */
@supports (mix-blend-mode: multiply){
  .boda-card-media img,
  .boda-image img{
    mix-blend-mode:multiply;
  }
}

/* Stronger Ceremony / Celebration */
.boda-card-body h3{
  font-family: ui-serif, Georgia, 'Times New Roman', serif;
  font-size:28px;
  letter-spacing:-0.02em;
  margin: 0 0 10px !important;
}

/* Elegant separators inside card body */
.boda-card-body .boda-divider{
  width:72px;
  height:1px;
  background:rgba(32,26,22,.22);
  margin:14px 0 18px;
}

/* Hide schedule section if exists */
#agenda, .boda-timeline, .boda-time-row{
  display:none !important;
}

/* ===== v11 info table ===== */

/* Ensure images show complete */
.boda-info-table img,
.boda-card-media img,
.boda-image img{
  width:100%;
  height:auto !important;
  object-fit:contain !important;
  display:block;
}

/* Table-like layout */
.boda-info-table{
  margin-top: 18px;
}
.boda-info-row{
  padding: 26px 0;
  border-top: 1px solid rgba(32,26,22,.12);
}
.boda-info-row:first-child{
  border-top: none;
}
.boda-info-row .wp-block-columns{
  gap: 26px;
  align-items: center;
}
.boda-info-media figure{
  margin:0 !important;
}
.boda-info-media img{
  background:#fefdfb;
  border-radius: 0 !important;
}
@supports (mix-blend-mode: multiply){
  .boda-info-media img{ mix-blend-mode: multiply; }
}
.boda-info-text h3{
  font-family: ui-serif, Georgia, 'Times New Roman', serif;
  font-size: 30px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.boda-info-text .boda-divider{
  width: 86px;
  height: 1px;
  background: rgba(32,26,22,.22);
  margin: 12px 0 18px;
}
.boda-info-text p{
  margin: 0 0 10px;
}
.boda-info-text ul{
  margin: 10px 0 0 18px;
}
@media (max-width: 820px){
  .boda-info-row .wp-block-columns{
    gap: 16px;
  }
}

/* ===== v12 spacing + menu cleanup ===== */

/* More vertical breathing room */
.boda-section{
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}
.boda-info-row{
  padding-top: 64px;
  padding-bottom: 64px;
}
.boda-footer{
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

/* Hide removed sections from menu (gallery / agenda) */
nav a[href*="#agenda"],
nav a[href*="#galeria"],
nav a[href*="#gallery"]{
  display:none !important;
}
