/* ==========================================================================
   ASEMINA - Mother's Day Contest Style Sheet
   ========================================================================== */

/* Design Tokens & Variables */
:root {
  /* Color Palette */
  --burgundy-dark: #3a0010;
  --burgundy-mid: #5c0620;
  --burgundy-light: #831032;
  --pink-rose: #d6336c;
  --pink-main: #f06292;
  --pink-pastel: #fce4ec;
  --pink-light: #fff0f5;
  --gold: #d4af37;
  --gold-light: #f3e5ab;
  
  /* Neutral Palette */
  --text-dark: #2d2024;
  --text-muted: #6e5e63;
  --bg-base: #fdfafb;
  --bg-white: #ffffff;
  
  /* Glassmorphism Defaults */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: rgba(92, 6, 32, 0.08);
  
  /* Semantic Colors */
  --success: #2e7d32;
  --error: #c62828;
  --warning: #ef6c00;
  
  /* Typography */
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  
  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 6px -1px var(--glass-shadow);
  --shadow-md: 0 10px 15px -3px var(--glass-shadow), 0 4px 6px -2px var(--glass-shadow);
  --shadow-lg: 0 20px 25px -5px var(--glass-shadow), 0 10px 10px -5px var(--glass-shadow);
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-ui);
  background-color: var(--bg-base);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background elements */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 600px;
  background: radial-gradient(circle at 10% 20%, rgba(240, 98, 146, 0.1) 0%, rgba(253, 250, 251, 0) 60%),
              radial-gradient(circle at 90% 80%, rgba(92, 6, 32, 0.05) 0%, rgba(253, 250, 251, 0) 50%);
  z-index: -1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--pink-light);
}
::-webkit-scrollbar-thumb {
  background: var(--burgundy-light);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--burgundy-mid);
}

/* Typography elements */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--burgundy-mid) 0%, var(--burgundy-light) 100%);
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(92, 6, 32, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--burgundy-light) 0%, var(--burgundy-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(92, 6, 32, 0.4);
}

.btn-submit {
  background: linear-gradient(135deg, var(--pink-rose) 0%, var(--burgundy-mid) 100%);
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(214, 51, 108, 0.3);
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--burgundy-mid) 0%, var(--burgundy-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(214, 51, 108, 0.4);
}

.btn-block {
  width: 100%;
}

/* Countdown Bar (Sticky Top) */
.countdown-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy-mid) 100%);
  color: var(--bg-white);
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid var(--pink-rose);
}

.countdown-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.countdown-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--pink-pastel);
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 6px;
}

.timer-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  min-width: 55px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timer-segment span:first-child {
  font-size: 1.25rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  color: var(--bg-white);
}

.segment-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--pink-pastel);
}

.timer-colon {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pink-rose);
  animation: pulse 1s infinite alternate;
}

/* Navbar */
.navbar {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  padding: 15px 20px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  font-size: 2rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--burgundy-mid);
  line-height: 1.2;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.btn-admin-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: var(--pink-pastel);
  color: var(--burgundy-mid);
  border: 1px solid rgba(214, 51, 108, 0.15);
  transition: var(--transition-smooth);
}

.btn-admin-nav:hover {
  background: var(--pink-rose);
  color: var(--bg-white);
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy-mid) 50%, var(--burgundy-light) 100%);
  color: var(--bg-white);
  padding: 60px 20px 80px;
  text-align: center;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--bg-base), transparent);
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--pink-pastel);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 15px;
  color: var(--bg-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  color: var(--pink-pastel);
  max-width: 700px;
  margin: 0 auto 35px;
}

/* Prize Box in Hero */
.prize-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 25px 30px;
  max-width: 650px;
  margin: 0 auto;
  text-align: left;
  box-shadow: var(--shadow-lg);
}

.prize-card-badge {
  position: absolute;
  top: -12px;
  left: 30px;
  background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
  color: var(--burgundy-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.prize-content {
  display: flex;
  gap: 20px;
  align-items: center;
}

.prize-icon-wrapper {
  background: rgba(255, 255, 255, 0.12);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.prize-details h3 {
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 5px;
}

.prize-details .artists {
  font-size: 0.95rem;
  color: var(--pink-pastel);
  margin-bottom: 10px;
}

.event-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
  color: var(--bg-white);
  opacity: 0.9;
}

.event-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-info i {
  color: var(--pink-rose);
  font-size: 1rem;
}

/* Layout */
.main-layout {
  max-width: 1200px;
  margin: -40px auto 60px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.content-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: start;
}

@media (max-width: 992px) {
  .content-container {
    grid-template-columns: 1fr;
  }
  .main-layout {
    margin-top: -20px;
  }
}

/* Glass Card */
.card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

/* Registration Section: Steps */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink-pastel);
  color: var(--burgundy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.step-dot.active {
  background: var(--burgundy-mid);
  color: var(--bg-white);
  box-shadow: 0 0 0 4px var(--pink-pastel);
}

.step-line {
  height: 4px;
  width: 80px;
  background: var(--pink-pastel);
  margin: 0 10px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.step-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--burgundy-mid);
  transition: var(--transition-smooth);
}

.step-indicator.step2-active .step-line::after {
  width: 100%;
}

.step-indicator.step2-active #dot-step-2 {
  background: var(--burgundy-mid);
  color: var(--bg-white);
  box-shadow: 0 0 0 4px var(--pink-pastel);
}

.step-content {
  display: none;
  animation: fadeIn 0.4s ease-out forwards;
}

.step-content.active {
  display: block;
}

.step-header {
  margin-bottom: 25px;
}

.step-header h2 {
  font-size: 1.65rem;
  color: var(--burgundy-mid);
  margin-bottom: 8px;
}

.step-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--pink-rose);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 15px;
  padding: 5px 0;
  transition: var(--transition-fast);
}

.btn-back:hover {
  color: var(--burgundy-dark);
  transform: translateX(-3px);
}

/* Forms styling */
.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 576px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.required {
  color: var(--pink-rose);
}

input[type="text"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(92, 6, 32, 0.15);
  background-color: var(--bg-white);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

input[type="text"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--pink-rose);
  box-shadow: 0 0 0 3px rgba(240, 98, 146, 0.2);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.textarea-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  margin-top: 6px;
  color: var(--text-muted);
}

.char-counter.warning {
  color: var(--warning);
  font-weight: 600;
}

.char-counter.limit {
  color: var(--error);
  font-weight: 600;
}

.validation-message {
  color: var(--error);
  font-weight: 500;
}

.form-tip {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Social Wall Section */
.social-wall-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title-wrapper {
  text-align: left;
}

.section-badge {
  display: inline-block;
  background: var(--pink-pastel);
  color: var(--burgundy-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.section-title-wrapper h2 {
  font-size: 1.85rem;
  color: var(--burgundy-mid);
}

.section-title-wrapper p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.social-wall-controls {
  display: flex;
  gap: 12px;
  width: 100%;
}

.search-box {
  position: relative;
  flex-grow: 1;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}

.search-box input {
  padding-left: 40px;
  height: 44px;
}

.btn-refresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--bg-white);
  border: 1px solid rgba(92, 6, 32, 0.15);
  color: var(--burgundy-mid);
  padding: 0 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.btn-refresh:hover {
  background: var(--pink-light);
  border-color: var(--pink-rose);
  color: var(--pink-rose);
}

/* Grid Layout for Messages */
.social-wall-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 8px;
}

@media (min-width: 768px) and (max-width: 992px) {
  .social-wall-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.social-wall-loading,
.social-wall-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: var(--glass-bg);
  border: 1px dashed rgba(92, 6, 32, 0.2);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--text-muted);
}

.social-wall-loading p,
.social-wall-empty p {
  margin-top: 15px;
  font-size: 0.95rem;
}

/* Message Card styling */
.message-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  position: relative;
  transition: var(--transition-smooth);
  animation: fadeInUp 0.4s ease-out forwards;
}

.message-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(240, 98, 146, 0.4);
}

.card-winner-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
  color: var(--burgundy-dark);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.message-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.5;
  position: relative;
}

.message-text::before {
  content: '“';
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(214, 51, 108, 0.1);
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: 0;
}

.message-author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(92, 6, 32, 0.05);
  padding-top: 12px;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy-mid) 0%, var(--pink-main) 100%);
  color: var(--bg-white);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--burgundy-dark);
}

.message-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Modals / Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(58, 0, 16, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-header-accent {
  height: 8px;
  background: linear-gradient(to right, var(--burgundy-dark), var(--pink-rose), var(--burgundy-dark));
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(92, 6, 32, 0.05);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: var(--pink-pastel);
  color: var(--burgundy-dark);
}

.modal-body {
  padding: 30px;
  text-align: center;
}

.success-icon-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.success-checkmark {
  font-size: 4rem;
  color: var(--success);
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.modal-body h2 {
  font-size: 1.75rem;
  color: var(--burgundy-mid);
  margin-bottom: 8px;
}

.modal-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* Ticket Design */
.ticket-visual {
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy-mid) 100%);
  color: var(--bg-white);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  border: 2px solid var(--gold);
  border-bottom: none;
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.ticket-org {
  color: var(--gold-light);
}

.ticket-title {
  color: var(--pink-pastel);
}

.ticket-prize-title {
  font-family: var(--font-ui);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.ticket-event {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}

.ticket-lineup {
  font-size: 0.9rem;
  color: var(--pink-pastel);
  margin-bottom: 20px;
}

.ticket-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  text-align: left;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 0.65rem;
  color: var(--pink-pastel);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.meta-val {
  font-size: 0.8rem;
  font-weight: 700;
}

/* Scalloped edge for tear effect */
.ticket-footer-tear {
  background: var(--burgundy-mid);
  height: 12px;
  margin: 0 -22px;
  position: relative;
  overflow: hidden;
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.tear-scallop {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--bg-white);
  border-radius: 50%;
  bottom: -8px;
}

/* Render scallop items horizontally */
.tear-scallop:nth-child(1) { left: 5px; }
.tear-scallop:nth-child(2) { left: 45px; }
.tear-scallop:nth-child(3) { left: 85px; }
.tear-scallop:nth-child(4) { left: 125px; }
.tear-scallop:nth-child(5) { left: 165px; }
.tear-scallop:nth-child(6) { left: 205px; }
.tear-scallop:nth-child(7) { left: 245px; }
.tear-scallop:nth-child(8) { left: 285px; }
.tear-scallop:nth-child(9) { left: 325px; }
.tear-scallop:nth-child(10) { left: 365px; }
.tear-scallop:nth-child(11) { left: 405px; }
.tear-scallop:nth-child(12) { left: 445px; }

.modal-alert-info {
  background: var(--pink-light);
  border-left: 4px solid var(--pink-rose);
  padding: 12px;
  font-size: 0.85rem;
  border-radius: 0 4px 4px 0;
  text-align: left;
  margin-bottom: 25px;
  display: flex;
  gap: 8px;
  color: var(--text-dark);
}

.modal-alert-info i {
  color: var(--pink-rose);
  flex-shrink: 0;
}

/* Footer styling */
.footer {
  background: var(--burgundy-dark);
  color: var(--bg-white);
  padding: 40px 20px;
  margin-top: 80px;
  border-top: 3px solid var(--pink-rose);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.footer-logo-img {
  max-height: 80px;
  width: auto;
  border-radius: var(--radius-sm);
  padding: 5px;
}

.footer-committee {
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  font-size: 1rem;
}

/* Keyframes & Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

.icon-spin {
  animation: slow-spin 2s linear infinite;
}

@keyframes slow-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--pink-pastel);
  border-top: 4px solid var(--burgundy-mid);
  border-radius: 50%;
  animation: slow-spin 1s linear infinite;
}

/* Social Wall Carousel & Slider */
.social-wall-carousel {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin-top: 10px;
}

.carousel-track-container {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: center;
}

.carousel-track-container .social-wall-grid {
  width: 100%;
  max-height: none;
  overflow-y: visible;
  padding-right: 0;
}

.carousel-control {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--burgundy-mid);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  flex-shrink: 0;
  z-index: 10;
}

.carousel-control:hover:not(:disabled) {
  background: var(--pink-rose);
  color: var(--bg-white);
  border-color: var(--pink-rose);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.carousel-control:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-control:active:not(:disabled) {
  transform: translateY(0);
}

.carousel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 15px;
  padding: 0 10px;
}

.btn-refresh-sm {
  background: none;
  border: none;
  color: var(--burgundy-mid);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}

.btn-refresh-sm:hover {
  color: var(--pink-rose);
}

.carousel-indicator {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--pink-pastel);
  padding: 4px 12px;
  border-radius: 20px;
}

/* Social Buttons in Modal */
.social-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin: 25px 0;
  width: 100%;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bg-white) !important;
  text-decoration: none;
  transition: var(--transition-smooth);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.social-btn:active {
  transform: translateY(0);
}

.whatsapp-btn {
  background-color: #25d366;
  border: 1px solid #20ba5a;
}

.whatsapp-btn:hover {
  background-color: #1ebd54;
}

.facebook-btn {
  background-color: #1877f2;
  border: 1px solid #166fe5;
}

.facebook-btn:hover {
  background-color: #1464cc;
}

.instagram-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border: none;
}

.instagram-btn:hover {
  filter: brightness(1.1);
}

