/* ===== GROYPETTE.NEOCITIES.ORG — style.css ===== */
/* Aesthetic: Coquette · Frog · Traditional Catholic */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Pinyon+Script&display=swap');

:root {
  --blush:    #f7c5d0;
  --rose:     #e8879a;
  --deep-rose:#c45a72;
  --cream:    #fdf6ef;
  --ivory:    #fef9f5;
  --parchment:#f5ece0;
  --gold:     #c9a86c;
  --gold-dark:#8b6914;
  --frog:     #5a8a4a;
  --frog-dark:#3d6634;
  --sage:     #a8bf9f;
  --sage-lt:  #ddebd8;
  --maroon:   #6b1a2a;
  --navy:     #1a2340;
  --text-main:#2c1a1a;
  --text-muted:#7a5c5c;
  --text-light:#a07878;
  --border:   #dfc8c8;
  --shadow:   rgba(180,120,130,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--ivory);
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(247,197,208,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(168,191,159,0.2) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23dfc8c8' opacity='0.4'/%3E%3C/svg%3E");
  font-family: 'EB Garamond', Georgia, serif;
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 17px;
}

/* ===== PETALS ===== */
.petals-container {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.petal {
  position: absolute;
  top: -20px;
  font-size: 14px;
  opacity: 0.6;
  animation: fall linear infinite;
  user-select: none;
}
@keyframes fall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 0.6; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

/* ===== MUSIC BUTTON ===== */
.music-btn {
  position: fixed; bottom: 20px; right: 20px; z-index: 999;
  background: var(--blush); border: 2px solid var(--rose);
  color: var(--maroon); border-radius: 50%; width: 46px; height: 46px;
  font-size: 18px; cursor: pointer; transition: all 0.3s;
  box-shadow: 0 2px 12px var(--shadow);
}
.music-btn:hover { background: var(--rose); color: white; transform: scale(1.1); }

/* ===== HEADER ===== */
header {
  text-align: center;
  padding: 3rem 1rem 1.5rem;
  position: relative; z-index: 1;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(247,197,208,0.3) 0%, transparent 100%);
}
.site-icon {
  font-size: 56px;
  display: block;
  margin-bottom: 0.5rem;
  animation: bobble 3s ease-in-out infinite;
  position: relative;
}
/* Pink bow above frog icon */
.site-icon::after {
  content: '🎀';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
}
@keyframes bobble {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
.site-title {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--deep-rose);
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-shadow: 1px 2px 8px rgba(196,90,114,0.2);
}
.site-subtitle {
  font-family: 'EB Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.4rem;
}
.site-tagline {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* ===== NAVIGATION ===== */
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  background: var(--maroon);
  padding: 0;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 3px solid var(--gold);
}
nav a {
  color: var(--blush);
  text-decoration: none;
  font-family: 'EB Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  padding: 0.7rem 1.1rem;
  transition: all 0.25s;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
nav a:hover, nav a.active {
  background: rgba(255,255,255,0.12);
  color: white;
}
nav a.active::after {
  content: '';
  position: absolute; bottom: 0; left: 20%; right: 20%;
  height: 2px; background: var(--gold);
}

/* ===== PAGE CONTAINER ===== */
.page-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  position: relative; z-index: 1;
}

/* ===== RIBBON / SECTION HEADERS ===== */
.ribbon {
  text-align: center;
  font-family: 'EB Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--deep-rose);
  margin: 2rem 0 1.2rem;
  display: flex; align-items: center; gap: 1rem;
}
.ribbon::before, .ribbon::after {
  content: ''; flex: 1;
  height: 1px; background: linear-gradient(90deg, transparent, var(--rose), transparent);
}

/* ===== WELCOME SECTION ===== */
.welcome-section { margin-bottom: 2.5rem; }
.welcome-card {
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 24px var(--shadow);
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}
.welcome-card::before {
  content: '✝';
  position: absolute; top: 14px; right: 20px;
  font-size: 2rem; color: var(--border); opacity: 0.5;
}
.welcome-card p { margin-bottom: 0.75rem; }
.frog-deco {
  float: right; font-size: 3.5rem;
  margin: 0 0 1rem 1.5rem;
  animation: bobble 4s ease-in-out infinite;
  position: relative;
}
.frog-deco::before { content: '🎀'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-size: 20px; }
.latin-quote { font-style: italic; color: var(--text-muted); }

/* ===== WIDGETS ROW ===== */
.widgets-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.widget {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 14px var(--shadow);
}
.widget h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600;
  color: var(--maroon);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.verse-text { font-style: italic; color: var(--text-muted); line-height: 1.6; }
.updates-list { list-style: none; }
.updates-list li { padding: 0.3rem 0; font-size: 0.92rem; border-bottom: 1px dashed var(--border); }
.updates-list li:last-child { border-bottom: none; }
.update-date { font-size: 0.75rem; color: var(--rose); background: var(--blush); padding: 1px 7px; border-radius: 20px; margin-right: 8px; }
.quick-links { list-style: none; }
.quick-links li { padding: 0.25rem 0; }
.quick-links a { color: var(--deep-rose); text-decoration: none; font-size: 0.95rem; transition: color 0.2s; }
.quick-links a:hover { color: var(--maroon); text-decoration: underline dotted; }

/* ===== ROSARY / CROSS SECTION ===== */
.rosary-section {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 1.5rem;
  justify-content: center;
}
.cross-deco { font-size: 1.5rem; color: var(--gold); }
.rosary-text { font-style: italic; }

/* ===== PAGE HEADINGS ===== */
.page-heading {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--deep-rose);
  text-align: center;
  margin: 1.5rem 0 0.5rem;
}
.page-subheading {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ===== ICONS PAGE ===== */
.icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 1.5rem;
}
.icon-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 3px 18px var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.icon-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blush), var(--rose), var(--sage));
}
.icon-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px var(--shadow); }
.icon-photo {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--rose);
  box-shadow: 0 2px 12px var(--shadow);
  margin-bottom: 1rem;
  background: var(--blush);
}
.icon-photo-placeholder {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 3px solid var(--rose);
  background: linear-gradient(135deg, var(--blush), var(--sage-lt));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; margin: 0 auto 1rem;
}
.icon-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--maroon); margin-bottom: 0.2rem;
}
.icon-handle {
  font-size: 0.8rem; color: var(--rose);
  letter-spacing: 0.08em; margin-bottom: 0.75rem;
}
.icon-bio {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.65;
}
.icon-badge {
  display: inline-block;
  background: var(--blush); color: var(--deep-rose);
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 2px 10px; border-radius: 20px; border: 1px solid var(--rose);
  margin-bottom: 0.6rem;
}

/* ===== RESOURCES PAGE ===== */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.resource-card {
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 2px 14px var(--shadow);
}
.resource-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--maroon); font-size: 1.1rem;
  margin-bottom: 0.75rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.resource-card p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-family: 'EB Garamond', serif;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-rose {
  background: var(--rose); color: white;
  box-shadow: 0 2px 10px rgba(232,135,154,0.4);
}
.btn-rose:hover { background: var(--deep-rose); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--deep-rose);
  border: 1.5px solid var(--rose);
}
.btn-outline:hover { background: var(--blush); }
.btn-maroon {
  background: var(--maroon); color: var(--blush);
  box-shadow: 0 2px 10px rgba(107,26,42,0.3);
}
.btn-maroon:hover { background: #4a1020; transform: translateY(-1px); }

/* ===== PINTEREST GALLERY GRID ===== */
.gallery-note {
  background: var(--parchment);
  border-left: 3px solid var(--rose);
  padding: 1rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin-bottom: 1.5rem;
  font-size: 0.9rem; color: var(--text-muted);
}
.pinterest-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-bottom: 2rem;
}
.pinterest-card {
  background: white; border: 1px solid var(--border);
  border-radius: 12px; padding: 1.25rem; text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.2s;
}
.pinterest-card:hover { transform: translateY(-3px); }
.pinterest-card .pin-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.pinterest-card h4 { font-family: 'Playfair Display', serif; color: var(--maroon); font-size: 0.95rem; margin-bottom: 0.4rem; }
.pinterest-card a { color: var(--rose); font-size: 0.85rem; text-decoration: none; }
.pinterest-card a:hover { text-decoration: underline; }

/* ===== CONFESSIONS PAGE ===== */
.confession-form-wrap {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 3px 20px var(--shadow);
}
.confession-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  color: var(--maroon); font-size: 1.2rem;
  margin-bottom: 1rem;
}
.field-label {
  display: block; font-size: 0.85rem;
  letter-spacing: 0.08em; color: var(--text-muted);
  margin-bottom: 0.4rem; margin-top: 1rem;
  text-transform: uppercase;
}
.field-input, .field-textarea, .field-select {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: white;
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  color: var(--text-main);
  transition: border-color 0.2s;
}
.field-input:focus, .field-textarea:focus {
  outline: none; border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(232,135,154,0.15);
}
.field-textarea { min-height: 120px; resize: vertical; }

.confession-cards { margin-top: 1.5rem; }
.confession-card {
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 12px var(--shadow);
  position: relative;
}
.confession-card::before {
  content: '🐸';
  position: absolute; top: 14px; right: 16px; font-size: 1.2rem; opacity: 0.6;
}
.confession-tag {
  display: inline-block;
  background: var(--sage-lt); color: var(--frog-dark);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 2px 10px; border-radius: 20px; margin-bottom: 0.6rem;
}
.confession-text { color: var(--text-main); margin-bottom: 0.75rem; }
.confession-meta { font-size: 0.8rem; color: var(--text-light); }

/* ===== DISCUSSION PAGE ===== */
.discussion-intro {
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border); border-radius: 14px;
  padding: 1.5rem; margin-bottom: 2rem;
  box-shadow: 0 2px 14px var(--shadow);
}
.reddit-form-wrap {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border); border-radius: 18px;
  padding: 2rem; box-shadow: 0 3px 20px var(--shadow);
}
.reddit-link-note {
  background: var(--parchment);
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1rem; border-radius: 0 10px 10px 0;
  font-size: 0.88rem; color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ===== ASCENSION PAGE ===== */
.ascension-hero {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(247,197,208,0.3), rgba(168,191,159,0.3));
  border-radius: 18px; margin-bottom: 2rem;
  border: 1px solid var(--border);
}
.ascension-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.ascension-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem;
  box-shadow: 0 2px 16px var(--shadow);
}
.ascension-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--maroon); font-size: 1.05rem;
  margin-bottom: 1rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.ascension-card ul { list-style: none; }
.ascension-card li {
  padding: 0.4rem 0;
  font-size: 0.92rem;
  border-bottom: 1px dashed var(--border);
  display: flex; gap: 0.6rem; align-items: flex-start;
}
.ascension-card li:last-child { border-bottom: none; }
.ascension-card li::before { content: '✦'; color: var(--rose); flex-shrink: 0; margin-top: 2px; }

.glp1-box {
  background: linear-gradient(135deg, rgba(90,138,74,0.08), rgba(247,197,208,0.15));
  border: 1.5px solid var(--sage);
  border-radius: 16px; padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.glp1-box h3 {
  font-family: 'Playfair Display', serif;
  color: var(--frog-dark); font-size: 1.1rem; margin-bottom: 0.75rem;
}
.disclaimer {
  background: var(--parchment); border-left: 3px solid var(--gold);
  padding: 0.75rem 1rem; border-radius: 0 10px 10px 0;
  font-size: 0.82rem; color: var(--text-muted); margin-top: 1rem;
}

/* ===== SHOP PAGE ===== */
.shop-sections { display: flex; flex-direction: column; gap: 2.5rem; }
.shop-banner {
  background: linear-gradient(135deg, var(--maroon), #4a1020);
  color: var(--blush); text-align: center;
  padding: 2rem; border-radius: 18px;
}
.shop-banner h2 {
  font-family: 'Pinyon Script', cursive;
  font-size: 2.5rem; color: white; margin-bottom: 0.5rem;
}
.shop-banner p { opacity: 0.85; margin-bottom: 1.25rem; }
.shop-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.shop-item {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border); border-radius: 14px;
  padding: 1.25rem; text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.2s;
}
.shop-item:hover { transform: translateY(-3px); }
.shop-item-emoji { font-size: 3rem; margin-bottom: 0.75rem; }
.shop-item h4 { font-family: 'Playfair Display', serif; color: var(--maroon); margin-bottom: 0.4rem; font-size: 0.95rem; }
.shop-item .price { color: var(--deep-rose); font-weight: 600; font-size: 1rem; margin-bottom: 0.75rem; }
.shop-item p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.shop-source-label {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 2px 8px;
  border-radius: 12px; margin-bottom: 0.5rem;
}
.shop-source-label.fuentes { background: var(--maroon); color: var(--blush); }
.shop-source-label.etsy { background: #f1641e; color: white; }

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 2.5rem 1rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(0deg, rgba(247,197,208,0.2), transparent);
  position: relative; z-index: 1;
}
footer p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 0.3rem; }
footer a { color: var(--rose); text-decoration: none; }
footer a:hover { text-decoration: underline dotted; }
.footer-sub { font-size: 0.78rem; color: var(--text-light); }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--deep-rose); }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  nav a { padding: 0.6rem 0.7rem; font-size: 0.78rem; }
  .page-container { padding: 1.5rem 1rem 3rem; }
  .welcome-card { padding: 1.25rem; }
  .icons-grid { grid-template-columns: 1fr; }
}
