/* Life in Christ - Static Website Styles */

/* CSS Variables - Design System */
:root {
  /* Colors - Purple, Maroon, Gold, Green Theme */
  --primary: 263 85% 35%;           /* Deep purple */
  --primary-glow: 263 85% 50%;      /* Brighter purple */
  --secondary: 345 65% 35%;         /* Maroon */
  --accent: 45 90% 55%;             /* Gold */
  --warm: 120 35% 45%;              /* Forest green */
  
  /* Backgrounds */
  --background: 0 0% 98%;           /* Light gray */
  --muted: 240 5% 95%;              /* Slightly darker gray */
  --card: 0 0% 100%;                /* White */
  
  /* Text Colors */
  --foreground: 240 10% 15%;        /* Dark gray */
  --muted-foreground: 240 5% 45%;   /* Medium gray */
  
  /* Interactive Elements */
  --border: 240 5% 85%;             /* Light border */
  --input: 240 5% 90%;              /* Input background */
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
  --gradient-hero: linear-gradient(135deg, hsl(var(--primary) / 0.9), hsl(var(--secondary) / 0.8));
  --gradient-warm: linear-gradient(135deg, hsl(var(--warm)), hsl(var(--accent)));
  
  /* Shadows */
  --shadow-soft: 0 10px 30px -10px hsl(var(--primary) / 0.2);
  --shadow-glow: 0 0 40px hsl(var(--primary-glow) / 0.4);
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Animations */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark mode variables */
@media (prefers-color-scheme: dark) {
  :root {
    --background: 240 10% 8%;
    --muted: 240 5% 12%;
    --card: 240 5% 10%;
    --foreground: 0 0% 95%;
    --muted-foreground: 240 5% 70%;
    --border: 240 5% 20%;
    --input: 240 5% 15%;
  }
}

:root {
  /* Categories */
  --gradient-spiritual-growth: linear-gradient(135deg, #16a34a, #065f46);
  --gradient-provisions: linear-gradient(135deg, #2563eb, #1e40af);
  --gradient-purpose: linear-gradient(135deg, #0d9488, #134e4a);
  --gradient-god: linear-gradient(135deg, #7e22ce, #4c1d95);
  --gradient-leadership: linear-gradient(135deg, #f59e0b, #b45309);
  --gradient-finances: linear-gradient(135deg, #38bdf8, #1e3a8a);
  --gradient-prayer: linear-gradient(135deg, #dc2626, #7f1d1d);
  --gradient-emphasis: linear-gradient(135deg, #9333ea, #581c87);
  --gradient-deliverance: linear-gradient(135deg, #22c55e, #166534);
  --gradient-others: linear-gradient(135deg, #64748b, #334155);

  /* Shared Styles */
  --hero-size: 60px;
  --arrow-color: white;
  --scripture-bg: rgba(255, 255, 255, 0.15);
  --scripture-border: rgba(255, 255, 255, 0.3);
}

.category-spiritual-growth .hero { background: var(--gradient-spiritual-growth); }
.category-provisions .hero { background: var(--gradient-provisions); }
.category-purpose .hero { background: var(--gradient-purpose); }
.category-god .hero { background: var(--gradient-god); }
.category-leadership .hero { background: var(--gradient-leadership); }
.category-finances .hero { background: var(--gradient-finances); }
.category-prayer .hero { background: var(--gradient-prayer); }
.category-emphasis .hero { background: var(--gradient-emphasis); }
.category-deliverance .hero { background: var(--gradient-deliverance); }
.category-others .hero { background: var(--gradient-others); }

.hero {
  color: white;
  padding: 80px 20px;
  text-align: center;
  font-size: var(--hero-size);
  position: relative;
}

.hero::after {
  content: "↓";
  display: block;
  margin-top: 20px;
  font-size: 2rem;
  color: var(--arrow-color);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.scripture-quote {
  font-style: italic;
  background: var(--scripture-bg);
  border-left: 4px solid var(--scripture-border);
  padding: 10px 15px;
  margin: 20px 0;
  border-radius: 6px;
  color: #fff;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: hsl(var(--primary));
}

.section-text {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Illuminated Text Effect */
.illuminated-text {
  transition: var(--transition-smooth);
  cursor: default;
}

.illuminated-text:hover {
  color: hsl(var(--primary-glow));
  text-shadow: 0 0 20px hsl(var(--primary-glow) / 0.5);
  transform: translateY(-1px);
}

/* Color Variants */
.primary-color { color: hsl(var(--primary)); }
.secondary-color { color: hsl(var(--secondary)); }
.accent-color { color: hsl(var(--accent)); }
.warm-color { color: hsl(var(--warm)); }

/* Layout Components */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.w-full { width: 100%; }

/* Grid Systems */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--border));
  z-index: 1000;
  padding: 1rem 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  text-decoration: none;
}

.logo img {
  width: 32px;
  height: 32px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: hsl(var(--foreground));
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: hsl(var(--primary));
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

.search-container {
  display: flex;
  align-items: center;
  background: hsl(var(--input));
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.search-input {
  border: none;
  background: transparent;
  outline: none;
  color: hsl(var(--foreground));
  width: 200px;
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: hsl(var(--foreground));
}

/* Hero Section */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  max-width: 4xl;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* =============================
   Global Styles for Journal Site
   ============================= */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9fafb;
  color: #111827;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}

.illuminated-text {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn-faith {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: #374151;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-faith:hover {
  background: #111827;
}

/* Dropdown Styling */
.category-select {
  padding: 0.6rem;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10'%3E%3Cpath fill='black' d='M7 10L0 0h14z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem top 50%;
  background-size: 0.8rem;
}

/* =============================
   Category Badge Gradient Colors
   ============================= */
.category-growth { background: linear-gradient(135deg, #16a34a, #065f46); color: #fff; }
.category-provision { background: linear-gradient(135deg, #3b82f6, #1e40af); color: #fff; }
.category-purpose { background: linear-gradient(135deg, #9333ea, #581c87); color: #fff; }
.category-god { background: linear-gradient(135deg, #facc15, #ca8a04); color: #000; }
.category-leadership { background: linear-gradient(135deg, #f97316, #9a3412); color: #fff; }
.category-finances { background: linear-gradient(135deg, #dc2626, #7f1d1d); color: #fff; }
.category-prayer { background: linear-gradient(135deg, #0ea5e9, #075985); color: #fff; }
.category-emphasis { background: linear-gradient(135deg, #14b8a6, #134e4a); color: #fff; }
.category-deliverance { background: linear-gradient(135deg, #22c55e, #14532d); color: #fff; }
.category-others { background: linear-gradient(135deg, #6b7280, #1f2937); color: #fff; }

/* Category Badge Common */
.category-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: inherit;
  font-size: 1rem;
}

.btn-hero {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
}

.btn-faith {
  background: var(--gradient-primary);
  color: white;
}

.btn-secondary {
  background: hsl(var(--secondary));
  color: white;
}

.btn-warm {
  background: var(--gradient-warm);
  color: white;
}

.btn-accent {
  background: hsl(var(--accent));
  color: hsl(var(--foreground));
}

.btn-outline {
  background: transparent;
  color: hsl(var(--primary));
  border: 2px solid hsl(var(--primary));
}

.glow-btn {
  box-shadow: var(--shadow-glow);
  transform: translateY(0);
}

.glow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px hsl(var(--primary-glow) / 0.6);
}

/* Cards */
.card {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid hsl(var(--border));
  transition: var(--transition-smooth);
}

.hover-glow:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.card-content h2,
.card-content h3 {
  margin-bottom: 1rem;
}

.card-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Category Filter */
.category-filter-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.category-dropdown {
    max-width: 350px;
    width: 100%;
}

.category-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(139, 69, 19, 0.2);
    border-radius: 8px;
    background: white;
    color: var(--text-primary);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-select:focus {
    outline: none;
    border-color: var(--deep-purple);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.category-description {
    text-align: center;
    max-width: 500px;
}

.category-description h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--deep-purple);
}

.category-description p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Category Badge */
.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(139, 69, 19, 0.1);
    color: var(--deep-purple);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(139, 69, 19, 0.2);
}

.blog-post {
    position: relative;
}

/* Content Sections */
.content-section {
  padding: 5rem 0;
}

.highlights {
  padding: 5rem 0;
  background: hsl(var(--background));
}

/* Scripture Sections */
.scripture-highlight {
  padding: 4rem 0;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

.scripture-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.scripture-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.scripture-reference {
  font-size: 1rem;
  color: hsl(var(--accent));
  font-weight: 600;
  font-style: normal;
}

/* Blog Posts */
.blog-posts {
  padding: 5rem 0;
  background: hsl(var(--muted));
}

.blog-grid {
  display: grid;
  gap: 3rem;
}

.blog-post {
  background: hsl(var(--card));
}

.scripture-quote {
  background: hsl(var(--primary) / 0.1);
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  border-left: 4px solid hsl(var(--primary));
}

.scripture-quote p {
  font-style: italic;
  margin-bottom: 0.5rem;
  color: hsl(var(--primary));
}

.scripture-quote cite {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.post-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.post-title a {
  color: inherit;
  text-decoration: none;
}

.post-excerpt {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Article Pages */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--gradient-primary);
  z-index: 1001;
  transition: width 0.1s ease;
}

.post-nav {
  padding: 2rem 0;
  background: hsl(var(--muted));
}

.nav-breadcrumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-article {
  padding: 3rem 0;
}

.article-content {
  max-width: 48rem;
  margin: 0 auto;
}

.article-image {
  margin: 2rem 0;
  border-radius: 1rem;
  overflow: hidden;
}

.responsive-image {
  width: 100%;
  height: auto;
  display: block;
}

.article-text {
  font-size: 1.125rem;
  line-height: 1.8;
}

.article-text p {
  margin-bottom: 1.5rem;
}

.article-text h2 {
  margin: 2rem 0 1rem 0;
  color: hsl(var(--primary));
}

.article-text ul,
.article-text ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.article-text li {
  margin-bottom: 0.5rem;
}

.reflection-box {
  background: hsl(var(--accent) / 0.1);
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid hsl(var(--accent));
  margin: 2rem 0;
}

.reflection-box h3 {
  color: hsl(var(--accent));
  margin-bottom: 1rem;
}

/* Social Sharing */
.social-share {
  margin: 3rem 0;
  text-align: center;
}

.social-share h4 {
  margin-bottom: 1rem;
  color: hsl(var(--muted-foreground));
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  color: white;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.email { background: hsl(var(--secondary)); }

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Related Posts */
.related-posts {
  padding: 3rem 0;
  background: hsl(var(--muted));
}

/* About Page Styles */
.beliefs-section {
  padding: 5rem 0;
  background: hsl(var(--muted));
}

.team-section {
  padding: 5rem 0;
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem auto;
  display: block;
}

.team-role {
  color: hsl(var(--primary));
  font-weight: 600;
  margin-bottom: 1rem;
}

.stats-section {
  padding: 5rem 0;
  background: hsl(var(--muted));
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: hsl(var(--primary));
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

/* Resources Page */
.resources-grid {
  padding: 5rem 0;
}

.featured-downloads {
  padding: 5rem 0;
  background: hsl(var(--muted));
}

.download-count {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Community Page */
.events-section {
  padding: 5rem 0;
}

.events-grid {
  display: grid;
  gap: 2rem;
}

.event-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.event-date {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem;
  border-radius: 0.75rem;
  text-align: center;
  min-width: 80px;
}

.event-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}

.event-date .month {
  font-size: 0.875rem;
  font-weight: 500;
}

.event-content {
  flex: 1;
}

.event-time {
  color: hsl(var(--primary));
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Prayer Timer */
.prayer-timer-section {
  padding: 5rem 0;
  background: hsl(var(--muted));
}

.prayer-timer {
  max-width: 400px;
  margin: 0 auto;
}

.timer-display {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: hsl(var(--primary));
  text-align: center;
  margin-bottom: 2rem;
}

.timer-separator {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

.timer-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.timer-presets {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.preset-btn {
  background: hsl(var(--input));
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.preset-btn:hover {
  background: hsl(var(--primary));
  color: white;
}

/* Contact Form */
.contact-section {
  padding: 5rem 0;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  background: hsl(var(--input));
  color: hsl(var(--foreground));
  font-family: inherit;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
}

/* Newsletter */
.newsletter {
  padding: 4rem 0;
  background: var(--gradient-warm);
  color: white;
  text-align: center;
}

.newsletter-content {
  max-width: 42rem;
  margin: 0 auto;
}

.newsletter h2 {
  color: white;
  margin-bottom: 1rem;
}

.newsletter p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
}

/* Footer */
.footer {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  padding: 3rem 0 1rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: hsl(var(--accent));
}

.footer-section a {
  color: hsl(var(--background));
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.footer-section a:hover {
  color: hsl(var(--accent));
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-block !important;
  margin-bottom: 0 !important;
}

.footer-bottom {
  border-top: 1px solid hsl(var(--border));
  padding-top: 1rem;
  text-align: center;
  color: hsl(var(--muted-foreground));
}

/* Scroll to Top */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 1000;
}

.scroll-to-top.visible {
  opacity: 1;
}

.scroll-to-top:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .search-container {
    display: none;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .timer-display {
    font-size: 3rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .nav-breadcrumb {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .event-card {
    flex-direction: column;
    text-align: center;
  }
  
  .event-date {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .share-buttons {
    flex-direction: column;
    align-items: center;
  }
}