/*
Theme Name: Road Rangers Oregon
Theme URI: https://roadrangersor.com
Author: Road Rangers Oregon
Description: Custom WordPress theme for Road Rangers Oregon Day Program. Features an inline admin dashboard for editing the photo gallery (using WordPress Media Library) and monthly calendar — no file uploads or JSON files required.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: road-rangers
*/

/* ===== RESET & ROOT ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --red:       #b84c3a;
  --red-lt:    #d4695a;
  --red-dk:    #7a2a1a;
  --cream:     #f5efe3;
  --bark:      #2c1a0e;
  --pine:      #1e4030;
  --fern:      #3a6b4a;
  --sage:      #6ba87a;
  --sky:       #a8d4e8;
  --sun:       #f2b84b;
  --sand:      #e8d9c0;
  --white:     #fffdf8;
  --text:      #2c1a0e;
  --text-md:   #5a3e2b;
  --text-lt:   #7a5a3a;
  --radius:    16px;
  --radius-lg: 28px;
  --nav-h:     72px;
  --nav-bg:    #1f4d35;
  --hero-bg:   #1f4d35;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--pine); color: #fff;
  padding: 8px 16px; border-radius: 0 0 8px 8px;
  font-weight: 700; text-decoration: none; z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ===== NAV ===== */
nav#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 40px;
  background: var(--hero-bg);
  box-shadow: 0 3px 0 rgba(0,0,0,0.2), 0 6px 20px rgba(0,0,0,0.25);
  transition: background 0.3s;
}
nav#main-nav.scrolled { background: rgba(31,77,53,0.97); }

.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img {
  width: 52px; height: 52px; border-radius: 50%;
  border: 3px solid var(--red);
  object-fit: cover;
}
.nav-brand-text {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem; color: #fff;
  line-height: 1; letter-spacing: 0.01em;
}
.nav-brand-text span {
  display: block; font-family: 'Nunito', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  color: rgba(255,255,255,0.6); letter-spacing: 0.18em; text-transform: uppercase;
}
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
  color: #fff; text-decoration: none;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.05em; padding: 6px 14px; border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: rgba(255,255,255,0.1); color: var(--sun); }
.nav-cta {
  background: var(--red) !important; color: #fff !important;
  box-shadow: 0 3px 0 var(--red-dk);
}
.nav-cta:hover { background: var(--red-lt) !important; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: 6px; flex-shrink: 0;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  nav#main-nav { padding: 10px 20px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--nav-bg); padding: 12px 20px 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.30); gap: 4px; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 16px; font-size: 0.95rem; border-radius: 10px; }
  .nav-cta { margin-top: 6px; text-align: center; padding: 12px 20px !important; }
}

/* ===== CALENDAR DAY MODAL ===== */
.cal-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.55); align-items: center; justify-content: center; padding: 24px;
}
.cal-modal-overlay.open { display: flex; }
.cal-modal-box {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px 28px;
  max-width: 360px; width: 100%; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35); border-top: 5px solid var(--hero-bg);
}
.cal-modal-close {
  position: absolute; top: 14px; right: 16px; background: none; border: none;
  cursor: pointer; font-size: 1.6rem; color: var(--text-lt); line-height: 1; padding: 2px 6px; border-radius: 6px;
}
.cal-modal-close:hover { background: var(--sand); color: var(--text); }
.cal-modal-date { font-family: 'Fredoka One', cursive; font-size: 1.4rem; color: var(--pine); margin-bottom: 16px; }
.cal-modal-body .cal-event { font-size: 0.9rem; padding: 10px 14px; border-radius: 10px; margin-bottom: 8px; display: block; }
.cal-modal-none { font-size: 0.92rem; color: var(--text-lt); font-weight: 600; font-style: italic; }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 5000;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; flex-direction: column; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px; font-size: 2.2rem;
  color: rgba(255,255,255,0.7); cursor: pointer; line-height: 1;
  background: none; border: none;
}
.lightbox-close:hover { color: #fff; }
.lightbox img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 10px 60px rgba(0,0,0,0.5); }
.lightbox-caption { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 700; margin-top: 16px; text-align: center; }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 9999;
  background: var(--pine); color: #fff;
  padding: 18px 28px; border-radius: var(--radius-lg);
  border: 3px solid var(--sage); box-shadow: 0 8px 32px rgba(0,0,0,0.22), 0 4px 0 var(--fern);
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.35s, transform 0.35s; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.toast.error { background: var(--red-dk); border-color: var(--red-lt); box-shadow: 0 8px 32px rgba(0,0,0,0.22), 0 4px 0 var(--red-dk); }
.toast-icon { font-size: 1.1rem; }

/* ===== SECTION DIVIDERS ===== */
.section-divider { display: block; width: 100%; height: 0; margin: 0; padding: 0; border: none; position: relative; z-index: 2; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; background: var(--hero-bg);
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) 60px 100px;
  position: relative; overflow: hidden;
}
.hero-bg-trees { position: absolute; bottom: 0; left: 0; right: 0; height: 200px; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-tree-layer { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; display: block; }
.hero-dots {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-tag {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px; box-shadow: 0 3px 0 var(--red-dk);
  animation: floatUp 0.6s 0.1s both;
}
.hero h1 {
  font-family: 'Fredoka One', cursive; font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff; line-height: 1.12; margin-bottom: 20px;
  text-shadow: 2px 3px 0 rgba(0,0,0,0.2); animation: floatUp 0.7s 0.2s both;
}
.hero h1 span { color: var(--sun); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.88); line-height: 1.8; margin-bottom: 36px;
  font-weight: 600; max-width: 480px; animation: floatUp 0.6s 0.35s both;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: floatUp 0.6s 0.5s both; }
.btn {
  display: inline-block; text-decoration: none; font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 0.9rem; letter-spacing: 0.05em;
  padding: 14px 30px; border-radius: 50px; cursor: pointer; border: none; transition: transform 0.15s, box-shadow 0.15s;
}
.btn-red { background: var(--red); color: #fff; box-shadow: 0 4px 0 var(--red-dk); }
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--red-dk); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.hero-right { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; animation: floatUp 0.8s 0.3s both; }
.hero-photo { border-radius: var(--radius); overflow: hidden; box-shadow: 4px 6px 0 rgba(0,0,0,0.3); border: 3px solid rgba(255,255,255,0.15); aspect-ratio: 4/3; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo:nth-child(2) { transform: rotate(2deg); margin-top: 18px; }
.hero-photo:nth-child(3) { transform: rotate(-1.5deg); }
.hero-photo:nth-child(4) { transform: rotate(1deg); margin-top: -10px; }

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

/* ===== SECTIONS ===== */
.about-section    { background: var(--cream);  padding: 72px 60px; }
.gallery-section  { background: var(--hero-bg); padding: 72px 60px; }
.calendar-section { background: var(--cream);  padding: 72px 60px; }
.why-section      { background: var(--red);    padding: 72px 60px; position: relative; overflow: hidden; }
.fb-section       { background: var(--hero-bg); padding: 72px 60px; }
.contact-section  { background: var(--sand);   padding: 72px 60px; }
.why-section::before { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px); background-size: 36px 36px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: var(--sun); color: var(--bark);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px; margin-bottom: 12px; box-shadow: 0 3px 0 #b07a20;
}
.section-title { font-family: 'Fredoka One', cursive; font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--pine); line-height: 1.15; margin-bottom: 14px; }
.section-sub { font-size: 1rem; color: var(--text-md); line-height: 1.8; max-width: 600px; margin: 0 auto; font-weight: 600; }
.gallery-section .section-title, .fb-section .section-title { color: #fff; }
.gallery-section .section-sub, .fb-section .section-sub { color: rgba(255,255,255,0.8); }
.why-section .section-title { color: #fff; }
.why-section .section-sub { color: rgba(255,255,255,0.88); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== ABOUT CARDS ===== */
.about-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.about-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 30px 22px 24px;
  text-align: center; border: 2px solid var(--sand); box-shadow: 0 4px 0 var(--sand);
  position: relative; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s;
}
.about-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; }
.about-card:nth-child(1)::before { background: var(--red); }
.about-card:nth-child(2)::before { background: var(--fern); }
.about-card:nth-child(3)::before { background: var(--sun); }
.about-card:nth-child(4)::before { background: var(--sky); }
.about-card:hover { transform: translateY(-6px); box-shadow: 0 10px 0 var(--sand); }
.card-icon { font-size: 2.8rem; margin-bottom: 14px; display: block; }
.about-card h3 { font-family: 'Fredoka One', cursive; font-size: 1.15rem; color: var(--pine); margin-bottom: 8px; }
.about-card p { font-size: 0.88rem; color: var(--text-md); line-height: 1.7; font-weight: 600; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 40px; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 3px solid rgba(255,255,255,0.12); aspect-ratio: 1/1; cursor: pointer;
  box-shadow: 3px 4px 0 rgba(0,0,0,0.3); transition: transform 0.25s, box-shadow 0.25s;
  max-height: 160px;
}
.gallery-item:hover, .gallery-item:focus-within { transform: scale(1.04) rotate(-0.5deg); z-index: 2; box-shadow: 6px 8px 0 rgba(0,0,0,0.4); border-color: var(--sun); }
.gallery-item.tall  { grid-row: span 2; aspect-ratio: auto; max-height: none; }
.gallery-item.wide  { grid-column: span 2; aspect-ratio: 16/9; max-height: none; }
.gallery-item img   { width: 100%; height: 100%; object-fit: cover; display: block; transition: filter 0.25s; }
.gallery-item:hover img { filter: brightness(1.08) saturate(1.08); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.78)); color: #fff;
  padding: 24px 12px 10px; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.04em; opacity: 0; transition: opacity 0.2s;
}
.gallery-item:hover .gallery-caption, .gallery-item:focus-within .gallery-caption { opacity: 1; }

/* ===== CALENDAR ===== */
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; flex-wrap: wrap; gap: 12px; }
.cal-month { font-family: 'Fredoka One', cursive; font-size: 1.65rem; color: var(--pine); }
.cal-note { font-size: 0.78rem; font-weight: 700; color: var(--text-lt); background: var(--sand); padding: 6px 14px; border-radius: 50px; border: 2px solid rgba(0,0,0,0.08); }
.cal-grid-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: 3px solid var(--sand); box-shadow: 0 4px 0 var(--sand); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); min-width: 560px; overflow: hidden; }
.cal-head { background: var(--hero-bg); color: rgba(255,255,255,0.85); padding: 11px 4px; text-align: center; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; border-right: 1px solid rgba(255,255,255,0.1); }
.cal-head:last-child { border-right: none; }
.cal-cell { background: var(--white); min-height: 90px; padding: 8px 8px 6px; border-right: 2px solid var(--sand); border-bottom: 2px solid var(--sand); cursor: pointer; transition: background 0.15s; }
.cal-cell:hover { background: #f0ebe0; }
.cal-cell:nth-child(7n) { border-right: none; }
.cal-cell.empty { background: rgba(244,239,230,0.55); cursor: default; }
.cal-cell.empty:hover { background: rgba(244,239,230,0.55); }
.cal-cell.weekend { background: rgba(255,253,248,0.8); }
.cal-num { font-family: 'Fredoka One', cursive; font-size: 1.1rem; color: var(--text-lt); display: block; margin-bottom: 5px; }
.cal-cell.active .cal-num { color: var(--pine); }
.cal-event { display: block; font-size: 0.67rem; font-weight: 700; line-height: 1.35; padding: 4px 7px; border-radius: 8px; margin-bottom: 3px; letter-spacing: 0.01em; }
.ev-water    { background: #daeef7; color: #0c3e58; border-left: 3px solid #3a8aaa; }
.ev-museum   { background: #ede8f7; color: #2e1660; border-left: 3px solid #7a5ab0; }
.ev-nature   { background: #e2f2e6; color: #163320; border-left: 3px solid #4a9a5a; }
.ev-community{ background: #fdeee8; color: #4a1a0a; border-left: 3px solid #d06040; }
.ev-leisure  { background: #fef5e0; color: #4a2e04; border-left: 3px solid #d09820; }
.ev-park     { background: #e4f0e4; color: #152e15; border-left: 3px solid #5a8a5a; }
.cal-legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; padding-top: 18px; border-top: 2px dashed var(--sand); }
.leg-item { display: flex; align-items: center; gap: 7px; font-size: 0.75rem; font-weight: 700; color: var(--text-md); }
.leg-dot { width: 12px; height: 12px; border-radius: 4px; flex-shrink: 0; }

/* ===== WHY CARDS ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; position: relative; z-index: 1; }
.why-card { background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.28); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; transition: background 0.2s, transform 0.2s; }
.why-card:hover { background: rgba(255,255,255,0.22); transform: translateY(-5px); }
.why-icon { font-size: 2.6rem; margin-bottom: 16px; display: block; }
.why-card h3 { font-family: 'Fredoka One', cursive; font-size: 1.25rem; color: #fff; margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.88); line-height: 1.75; font-weight: 600; }

/* ===== FACEBOOK ===== */
.fb-card-wrap { display: flex; justify-content: center; }
.fb-card { display: inline-flex; flex-direction: column; align-items: center; background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.18); border-radius: var(--radius-lg); padding: 44px 60px; max-width: 480px; width: 100%; margin: 0 auto; transition: background 0.2s; }
.fb-card:hover { background: rgba(255,255,255,0.13); }
.fb-name { font-family: 'Fredoka One', cursive; font-size: 1.45rem; color: #fff; margin-bottom: 4px; }
.fb-handle { font-size: 0.82rem; color: rgba(255,255,255,0.55); font-weight: 600; margin-bottom: 28px; }
.fb-btn { background: #1877f2; color: #fff; text-decoration: none; font-weight: 800; font-size: 0.87rem; letter-spacing: 0.07em; padding: 13px 32px; border-radius: 50px; box-shadow: 0 4px 0 #0d4db0; display: inline-block; transition: transform 0.15s, box-shadow 0.15s; }
.fb-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #0d4db0; }

/* ===== CONTACT ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; margin-top: 56px; }
.contact-aside h3 { font-family: 'Fredoka One', cursive; font-size: 1.5rem; color: var(--pine); margin-bottom: 14px; }
.contact-aside p { font-size: 0.92rem; color: var(--text-md); line-height: 1.85; margin-bottom: 28px; font-weight: 600; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.c-item { display: flex; align-items: flex-start; gap: 12px; background: var(--white); border-radius: var(--radius); padding: 14px 16px; border: 2px solid rgba(0,0,0,0.06); box-shadow: 0 3px 0 rgba(0,0,0,0.05); transition: transform 0.2s, box-shadow 0.2s; }
.c-item:hover { transform: translateY(-2px); box-shadow: 0 5px 0 rgba(0,0,0,0.07); }
.c-item-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--pine); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.c-item-text { font-size: 0.83rem; }
.c-item-label { font-weight: 800; color: var(--pine); margin-bottom: 2px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; }
.c-item-value { color: var(--text-md); font-weight: 600; line-height: 1.5; }
.c-item-value a { color: var(--fern); text-decoration: none; font-weight: 700; }
.c-item-value a:hover { color: var(--red); text-decoration: underline; }

/* ===== FORM ===== */
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; border: 3px solid var(--sand); box-shadow: 0 6px 0 rgba(0,0,0,0.07); }
.form-title { font-family: 'Fredoka One', cursive; font-size: 1.45rem; color: var(--pine); margin-bottom: 24px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-group { margin-bottom: 16px; }
.f-group label { display: block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pine); margin-bottom: 6px; }
.f-group label span { color: var(--red); }
.f-group input, .f-group select, .f-group textarea { width: 100%; background: var(--cream); border: 2px solid var(--sand); border-radius: var(--radius); padding: 11px 14px; font-family: 'Nunito', sans-serif; font-size: 0.92rem; font-weight: 600; color: var(--text); outline: none; -webkit-appearance: none; appearance: none; }
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { border-color: var(--fern); background: #fff; box-shadow: 0 0 0 3px rgba(58,107,74,0.15); }
.f-group textarea { min-height: 110px; resize: vertical; }
.f-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233a6b4a' fill='none' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.f-submit { width: 100%; background: var(--red); color: #fff; border: none; cursor: pointer; padding: 15px 24px; border-radius: 50px; font-family: 'Nunito', sans-serif; font-size: 0.92rem; font-weight: 800; letter-spacing: 0.06em; box-shadow: 0 4px 0 var(--red-dk); margin-top: 8px; transition: transform 0.15s, box-shadow 0.15s; }
.f-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--red-dk); }
.f-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* ===== FOOTER ===== */
footer { background: var(--bark); color: rgba(255,255,255,0.65); padding: 40px 60px; text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 20px; }
.footer-logo { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--red); object-fit: cover; }
.footer-name { font-family: 'Fredoka One', cursive; font-size: 1.2rem; color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 20px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.82rem; font-weight: 700; padding: 5px 12px; border-radius: 50px; transition: background 0.2s, color 0.2s; }
.footer-links a:hover { background: rgba(255,255,255,0.1); color: var(--sun); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.35); font-weight: 600; }

/* ===== HOW TO GET STARTED ===== */
.steps-section {
  background: var(--cream);
  padding: 80px 60px;
}
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  flex: 1;
  max-width: 300px;
  border: 3px solid var(--sand);
  box-shadow: 0 6px 0 rgba(0,0,0,0.07);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 0 rgba(0,0,0,0.09);
}
.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  background: var(--pine);
  color: #fff;
  border-radius: 50%;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--cream);
  box-shadow: 0 3px 0 rgba(0,0,0,0.15);
}
.step-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}
.step-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.25rem;
  color: var(--pine);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-md);
  line-height: 1.65;
  margin-bottom: 18px;
}
.step-cta {
  display: inline-block;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 9px 20px;
  border-radius: 50px;
  box-shadow: 0 3px 0 var(--red-dk);
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.03em;
}
.step-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 var(--red-dk);
}
.step-cta-muted {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-lt);
  background: var(--cream);
  padding: 7px 16px;
  border-radius: 50px;
  border: 2px solid var(--sand);
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fern);
  width: 60px;
  flex-shrink: 0;
  padding-top: 20px;
  opacity: 0.55;
}
.step-connector svg {
  width: 52px;
  height: 22px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--pine);
  padding: 80px 60px;
}
.testimonials-section .section-title,
.testimonials-section .section-sub {
  color: #fff;
}
.testimonials-section .section-sub {
  opacity: 0.75;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}
.testimonial-stars {
  color: var(--sun);
  font-size: 1rem;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  font-weight: 600;
  flex: 1;
  font-style: italic;
}
.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 800;
  font-size: 0.88rem;
  color: #fff;
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--sage);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .hero { padding: calc(var(--nav-h) + 20px) 40px 80px; min-height: auto; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .steps-section, .testimonials-section { padding: 64px 40px; }
}
@media (max-width: 768px) {
  .steps-section, .testimonials-section { padding: 52px 24px; }
  .steps-grid { flex-direction: column; align-items: center; gap: 32px; }
  .step-card { max-width: 100%; width: 100%; }
  .step-connector { transform: rotate(90deg); padding-top: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-section, .gallery-section, .calendar-section, .why-section, .fb-section, .contact-section { padding: 52px 24px; }
  .about-cards { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .f-row { grid-template-columns: 1fr; }
  footer { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-cards { grid-template-columns: 1fr; }
  .fb-card { padding: 32px 24px; }
}
