/* =====================================================
   DESKTOP.CSS  (≥769px)
   Full-featured desktop wedding layout
   Replicates your current theme exactly.
   ===================================================== */

:root {
  --bg: #f5efe4;
  --bg-soft: #f9f4ec;
  --panel: #fdfaf5;
  --olive: #5d6b3b;
  --olive-soft: #819265;
  --text-main: #4b473a;
  --text-soft: #7b7769;
  --white: #fcf9f4;
  --max-width: 1000px;
  --accent: var(--olive);
  --accent-soft: var(--olive-soft);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =====================================================
   HEADER / NAV
===================================================== */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(247, 242, 234, 0.85);
  border-bottom: 1px solid rgba(195, 165, 143, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.logo {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

nav a {
  padding-bottom: 0.1rem;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s ease;
}

nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none !important;
}

/* =====================================================
   HERO SECTION (DESKTOP)
===================================================== */

.hero {
  min-height: 60vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: white;
  padding: 0 !important;
}

.hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Left */

.hero-left {
  background: #faf1e1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
}

.hero-left img {
  width: 260px;
}

/* Right */

.hero-right {
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}

.hero-right h1 {
  font-family: "Dancing Script", cursive;
  font-size: 4rem;
  font-weight: 600;
  color: var(--olive);
}

.hero-btn {
  margin: 0 auto;
  margin-top: 2rem;
  padding: 1rem 1.8rem;
  border: 2px solid var(--olive);
  color: var(--olive);
  border-radius: 12px;
  background: transparent;
  letter-spacing: 0.12em;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}

.hero-btn:hover {
  background: #f7f2ea;
}

/* =====================================================
   CHURCH HERO IMAGE
===================================================== */

.hero-church {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-church img {
  width: 100%;
  opacity: 0.85;
  display: block;
  filter: saturate(0.9);
}

/* =====================================================
   SECTIONS
===================================================== */

section {
  padding: 4rem 1.2rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  font-family: "Georgia", serif;
  font-size: 2rem;
}

.section-title p {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-soft);
  letter-spacing: 0.2em;
}

/* =====================================================
   DETAILS SECTION
===================================================== */

.details {
  background: var(--bg-soft);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.7rem;
}

.detail-card {
  background: white;
  border-radius: 1.2rem;
  padding: 1.5rem 1.8rem;
  border: 1px solid rgba(195, 165, 143, 0.25);
  box-shadow: 0 12px 28px rgba(75, 62, 51, 0.08);
}

.detail-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.detail-card p {
  color: var(--text-soft);
  font-size: 1rem;
}

.map-btn {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: 0.2s ease;
  box-shadow: 0 6px 18px rgba(75, 62, 51, 0.15);
}

.map-btn:hover {
  background: var(--accent-soft);
}

/* =====================================================
   SCATTER GALLERY (FULL)
===================================================== */

.gallery-scatter {
  background: radial-gradient(circle at top, #fdf7ed, var(--bg));
  position: relative;
  background: white !important;
}

.scatter-wrapper {
  
  position: relative;
  margin-top: 1.5rem;
  min-height: 380px;
  border-radius: 18px; /* opcional para ficar mais suave */
  padding: 1rem 0;     /* opcional se quiseres mais espaço vertical */
}

.scatter-area {
  position: relative;
  width: 100%;
  height: 340px;
  margin-top: 2.5rem;
}

.scatter-bg {
  position: absolute;
  width: 240px;
  height: 240px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../media/nozes.jpg");
  background-size: cover;
  background-position: center;
  opacity: .25;
  filter: blur(1px);
  border-radius: 18px;
  pointer-events: none;
}

.scatter-thumb {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid white;
  box-shadow: 0 14px 30px rgba(75, 62, 51, 0.18);
  transform: translate3d(0,0,0) scale(1);
  transition: transform 0.15s ease-out;
}

.scatter-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;        
  vertical-align: bottom; 
}


.scatter-thumb:nth-child(1) { transform: rotate(-10deg); }
.scatter-thumb:nth-child(2) { transform: rotate(8deg); }
.scatter-thumb:nth-child(3) { transform: rotate(-14deg); }
.scatter-thumb:nth-child(4) { transform: rotate(6deg); }
.scatter-thumb:nth-child(5) { transform: rotate(-62deg); }
.scatter-thumb:nth-child(6) { transform: rotate(10deg); }
.scatter-thumb:nth-child(7) { transform: rotate(-46deg); }
.scatter-thumb:nth-child(8) { transform: rotate(12deg); }
.scatter-thumb:nth-child(9) { transform: rotate(-60deg); }
.scatter-thumb:nth-child(10) { transform: rotate(14deg); }
.scatter-thumb:nth-child(11) { transform: rotate(50deg); }
.scatter-thumb:nth-child(12) { transform: rotate(-16deg); }
.scatter-thumb:nth-child(13) { transform: rotate(32deg); }
.scatter-thumb:nth-child(14) { transform: rotate(-8deg); }
.scatter-thumb:nth-child(15) { transform: rotate(14deg); }
.scatter-thumb:nth-child(16) { transform: rotate(-10deg); }
.scatter-thumb:nth-child(17) { transform: rotate(38deg); }
.scatter-thumb:nth-child(18) { transform: rotate(-33deg); }

.scatter-thumb:hover {
  transform: scale(1.08);
}

.gallery-intro {
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
  color: var(--text-main);
}

.gallery-intro h3 {
  font-family: "Georgia", serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--olive);
  font-weight: 400;
}

.gallery-intro p {
  font-size: 1rem;
  color: var(--text-soft);
  margin-bottom: 0.9rem;
  line-height: 1.6;
}


/* =====================================================
   COUNTDOWN SECTION
===================================================== */

.countdown-section {
  position: relative;
  padding: 7rem 1.2rem;
  background: var(--bg-soft);
  background-size: cover;
  background-position: center;
}

.countdown-bg {
  position: absolute;
  inset: 0;
  background-image: url("../media/nozes.png");
  background-size: cover;
  opacity: .45;
  filter: sepia(18%) saturate(80%) brightness(105%);
  z-index: 1;
}

.countdown-content {
  position: relative;
  z-index: 5;
}

.countdown-wrapper {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
}

.countdown-box {
  background: white;
  padding: 1.2rem 1.4rem;
  min-width: 110px;
  border-radius: 1.4rem;
  text-align: center;
  border: 1px solid rgba(195,165,143,0.25);
  box-shadow: 0 10px 24px rgba(75, 62, 51, 0.10);
}

.cd-number {
  font-size: 2.2rem;
  font-family: "Georgia", serif;
  color: var(--olive);
}

.cd-label {
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-soft);
}

/* =====================================================
   PARKING SECTION
===================================================== */

.parking-simple {
  padding: 4rem 4.5rem;
}

.parking-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;  
  align-items: center;
  gap: 1.5rem;
}



.parking-image img {
  width: 100%;
  border-radius: 1.5rem;
  border: 1px solid rgba(195,165,143,0.25);
  box-shadow: 0 18px 36px rgba(75,62,51,0.15);
}

/* =====================================================
   RSVP SECTION
===================================================== */

.rsvp {
  background: var(--bg-soft);
  padding: 4rem 1rem;
}

.google-form-container iframe {
  width: 100%;
  height: 850px;
  border-radius: 1rem;
  border: 1px solid rgba(195,165,143,0.3);
}

/* =====================================================
   FOOTER
===================================================== */

footer {
  text-align: center;
  padding: 2rem 1rem 1.5rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}



/* WedShoots section */
.wedshoots-section {
  background: var(--bg-soft);
  padding: 4rem 1.2rem;
}

.wedshoots-text {
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
}

.wedshoots-text h3 {
  font-family: "Georgia", serif;
  font-size: 1.6rem;
  color: var(--olive);
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.wedshoots-text p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.7rem;
}

.wedshoots-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
  margin-bottom: 2rem;
}

.wedshoots-logo {
  height: 55px;
  opacity: 0.9;
}

.wedshoots-qr {
  width: 140px;
  height: 140px;
  border-radius: 0.8rem;
  box-shadow: 0 8px 22px rgba(75,62,51,0.10);
}

.wedshoots-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.wedshoots-buttons img {
  height: 50px;
  transition: 0.2s ease;
  filter: saturate(0.9);
}

.wedshoots-buttons img:hover {
  transform: scale(1.04);
  filter: saturate(1.1);
}

.rsvp-clean {
  background: white; 
  padding: 4rem 1.2rem;
}

.rsvp-text {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.rsvp-btn {
  display: inline-block;
  margin-top: 1.8rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  border: 2px solid var(--olive);
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.rsvp-btn:hover {
  background: #f7f2ea;
}
