/* css/style.css */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

/* ===================================
   BODY
=================================== */
body {
  height: 100%;
  font-family: 'Noto Sans Thai', 'Noto Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

    
    /* ===================================
       UTILITY CLASSES
    =================================== */
    /* ===================================
   UTILITY CLASSES
=================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.font-th {
  font-family: 'Noto Sans Thai', system-ui, sans-serif;
}

.font-en {
  font-family: 'Noto Sans', system-ui, sans-serif;
}

.font-kr {
  font-family: 'Noto Sans KR', system-ui, sans-serif;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--text-primary);
}

.text-secondary {
  color: var(--text-secondary);
}

.gold-text {
  color: var(--accent);
}

.site-header {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 50%,
    var(--primary-light) 100%
  );
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-top-border {
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent) 20%,
    #ffffff 80%,
    transparent 100%
  );
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  gap: 20px;
}

.logo-container {
  flex-shrink: 0;
}

.church-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(
    0 0 15px rgba(255,255,255,0.4)
  );
}

.header-text {
  text-align: center;
}

.ornament {
  color: #ffffff;
  opacity: 0.6;
  font-size: 14px;
  margin: 8px 0;
}

.church-name {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin: 8px 0;
  letter-spacing: 0.5px;
}

.church-name-en {
  color: #9ca3af;
  font-size: 12px;
  letter-spacing: 2px;
  margin: 5px 0;
}

.church-tagline {
  color: var(--accent);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  margin: 8px 0;
}

    
    /* Navigation */
    /* ===================================
   NAVIGATION
=================================== */
.main-nav {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 15px 0;
}

/* Toggle (Mobile) */
.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 8px 16px;
  cursor: pointer;
  font-size: 24px;
  transition: all 0.3s ease;
  margin: 10px auto;
}

.nav-toggle:hover {
  background: var(--accent);
  color: var(--primary-light);
}

/* Menu */
.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 12px 20px;
  color: #d1d5db;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

/* underline */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link:hover::after {
  width: 80%;
}

/* Dropdown */
.dropdown-toggle {
  display: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #00144b;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 1000;
  border-top: 2px solid var(--accent);
  list-style: none;
  padding: 10px 0;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-link {
  display: block;
  padding: 12px 20px;
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.dropdown-link:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent);
  padding-left: 25px;
}
   /* Hero Section */
    .hero {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      padding: 100px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50px;
      left: -50px;
      width: 200px;
      height: 200px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      filter: blur(30px);
      animation: float 6s ease-in-out infinite alternate;
    }

    @keyframes float {
      0% { transform: translate(0, 0); }
      100% { transform: translate(50px, 50px); }
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .hero-icon {
      width: 100px;
      height: 100px;
      margin: 0 auto 25px;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.08); }
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 700;
      color: white;
      margin-bottom: 20px;
      text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
    }

    .hero p {
      font-size: 1.5rem;
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-block;
      padding: 18px 40px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .btn-primary {
      background: var(--accent);
      color: white;
      box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    }

    .btn-primary:hover {
      background: #d97706;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
    }

    .btn-outline {
      background: transparent;
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.5);
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: white;
    }

    /* Section */
    section {
      padding: 80px 20px;
    }

    .section-title {
      font-size: 2.8rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 60px;
      color: var(--text-primary);
      position: relative;
      display: inline-block;
      width: 100%;
    }
     .section-title h1 {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
}

.section-title h1 span {
  display: block;
}

.section-title h1 small {
  font-size: 70%;
  font-weight: 500;
  opacity: 0.85;
}

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 5px;
      background: var(--accent);
      border-radius: 3px;
    }

    /* Who is Jesus */
    .intro-card {
      background: white;
      border-radius: 25px;
      padding: 60px 50px;
      max-width: 900px;
      margin: 0 auto 50px;
      box-shadow: var(--shadow);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .intro-card::before {

      font-size: 6rem;
      position: absolute;
      top: 30px;
      left: 50%;
      transform: translateX(-50%);
      opacity: 0.08;
    }

    .intro-card h3 {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 25px;
      position: relative;
      z-index: 1;
    }

    .intro-card p {
      font-size: 1.3rem;
      color: var(--text-primary);
      line-height: 2;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .intro-card .verse {
      font-size: 1.2rem;
      font-style: italic;
      color: var(--text-secondary);
      margin-top: 30px;
      padding-top: 30px;
      border-top: 2px solid var(--surface-dark);
    }

    .intro-card .verse-ref {
      display: block;
      margin-top: 10px;
      font-weight: 600;
      color: var(--accent);
      font-style: normal;
    }

    /* Why Jesus Grid */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 35px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .why-card {
      background: white;
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .why-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--primary), var(--primary-light));
    }

    .why-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    }

    .why-icon {
      font-size: 4rem;
      margin-bottom: 20px;
      display: block;
    }

    .why-card h3 {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 15px;
    }

    .why-card p {
      color: var(--text-secondary);
      font-size: 1.05rem;
      line-height: 1.8;
    }

    /* Salvation Steps */
    .steps-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .step-card {
      background: white;
      border-radius: 20px;
      padding: 35px 40px;
      margin-bottom: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: flex-start;
      gap: 25px;
      transition: all 0.3s ease;
    }

    .step-card:hover {
      transform: translateX(10px);
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    }

    .step-number {
      flex-shrink: 0;
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2rem;
      font-weight: 700;

    }

    .step-content h3 {
      font-size: 1.4rem;
      color: var(--primary);
      margin-bottom: 10px;
      font-weight: 600;
    }

    .step-content p {
      color: var(--text-secondary);
      font-size: 1.05rem;
      line-height: 1.8;
    }

    .step-content .verse-small {
      margin-top: 12px;
      font-style: italic;
      color: var(--text-primary);
      font-size: 0.95rem;
      padding-left: 15px;
      border-left: 3px solid var(--accent);
    }

    /* Prayer Section */
    .prayer-box {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      border-radius: 25px;
      padding: 60px 50px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      color: white;
      box-shadow: var(--shadow);
    }

    .prayer-box h3 {
      font-size: 2.2rem;
      margin-bottom: 30px;
    }

    .prayer-text {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      padding: 35px;
      font-size: 1.2rem;
      line-height: 2;
      margin-bottom: 30px;
      text-align: left;
      border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .prayer-cta {
      font-size: 1.1rem;
      margin-bottom: 20px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.3rem;
      }

      .hero p {
        font-size: 1.2rem;
      }

      .section-title {
        font-size: 2.2rem;
      }

      .intro-card {
        padding: 40px 30px;
      }

      .intro-card h3 {
        font-size: 1.6rem;
      }

      .intro-card p {
        font-size: 1.1rem;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .step-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
      }

      .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
      }

      .prayer-box {
        padding: 40px 30px;
      }

      .prayer-box h3 {
        font-size: 1.8rem;
      }

      .prayer-text {
        font-size: 1.05rem;
        padding: 25px;
      }
    }

    @media (max-width: 480px) {
      .hero {
        padding: 70px 20px;
      }

      section {
        padding: 50px 15px;
      }

      .hero h1 {
        font-size: 1.9rem;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      .btn {
        width: 100%;
        max-width: 320px;
      }

      .intro-card {
        padding: 30px 20px;
      }
    }
    
.site-footer {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 50%,
    var(--primary-light) 100%
  );
  color: #ffffff;
  margin-top: auto;
}

.footer-top-border {
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent) 20%,
    var(--accent) 80%,
    transparent 100%
  );
}

.footer-content {
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-section {
  text-align: center;
}

.footer-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-text {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.3));
  margin-top: 15px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent);
}

/* Contact */
.contact-info {
  list-style: none;
  padding: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #9ca3af;
  font-size: 14px;
}

.contact-icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Social */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-link {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--accent);
}

.social-icon {
  width: 28px;
  height: 28px;
}

/* Bottom */
.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.2) 50%,
    transparent 100%
  );
  margin: 30px 0;
}

.footer-bottom {
  text-align: center;
  color: #6b7280;
  font-size: 13px;
  padding-bottom: 30px;
}

.footer-ornament {
  color: var(--accent);
  opacity: 0.4;
  font-size: 12px;
  margin: 10px 0;
}

.copyright {
  margin: 5px 0;
}

    
    /* ===================================
       RESPONSIVE STYLES
    =================================== */
    @media (min-width: 640px) {
      .church-name {
        font-size: 32px;
      }
      
      .church-tagline {
        font-size: 18px;
      }
      
      .header-info-bar {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
      }
      
      .info-separator {
        display: inline;
      }
      
      .footer-section {
        text-align: left;
      }
      
      .contact-item {
        justify-content: flex-start;
      }
      
      .social-links {
        justify-content: flex-start;
      }
    }
    
    @media (min-width: 768px) {
      .church-logo {
        width: 110px;
        height: 110px;
      }
      
      .church-name {
        font-size: 36px;
      }
      
      .hero-title {
        font-size: 56px;
      }
      
      .hero-subtitle {
        font-size: 24px;
      }
    }
    
    @media (min-width: 1024px) {
      .church-logo {
        width: 120px;
        height: 120px;
      }
      
      .footer-section:nth-child(3) {
        text-align: right;
      }
      
      .footer-section:nth-child(3) .contact-item {
        justify-content: flex-end;
      }
      
      .footer-section:nth-child(3) .social-links {
        justify-content: flex-end;
      }
    }
    
    @media (max-width: 1023px) {
      .nav-toggle {
        display: block;
      }
      
      .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #0f3460;
        padding: 0;
      }
      
      .nav-list.active {
        display: flex;
      }
      
      .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        position: relative;
      }
      
      .nav-link {
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding-right: 60px;
      }
      
      .nav-link::after {
        display: none;
      }
  .dropdown-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
  }
      
      
      .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #0a2540;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: none;
      }
      
      .nav-item.open .dropdown-menu {
        max-height: 1000px;
      }
      
        .nav-item.open > .dropdown-toggle::before {
    transform: rotate(180deg);
  }

  .dropdown-toggle::before {
    content: '▼';
    display: inline-block;
    transition: transform 0.3s ease;
  }
}

    
    @media (max-width: 640px) {
      .hero-title {
        font-size: 36px;
      }
      
      .hero-subtitle {
        font-size: 18px;
      }
      
      .section-title {
        font-size: 28px;
      }
      
      .welcome-text {
        font-size: 16px;
      }
      
      .service-card {
        padding: 30px 20px;
      }
      .service-card-title {
        font-size: 20px;
      }
      .mission-title {
        font-size: 28px;
      }
      .mission-item-title {
        font-size: 20px;
      }

    }

.policy-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10000;
}

.policy-modal.active {
  display: block;
}

.policy-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.policy-dialog {
  max-width: 900px;
  max-height: 85vh;
  margin: 5vh auto;
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  overflow-y: auto;
  position: relative;
}

.policy-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.prayer-box {
      background: linear-gradient(135deg, 
      var(--primary) 0%, var(--primary-dark) 100%);
      border-radius: 25px;
      padding: 60px 50px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      color: white;
      box-shadow: var(--shadow);
    }

    .prayer-box h3 {
      font-size: 2.2rem;
      margin-bottom: 30px;
    }

    .prayer-text {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      padding: 35px;
      font-size: 1.2rem;
      line-height: 2;
      margin-bottom: 30px;
      text-align: left;
      border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .prayer-cta {
      font-size: 1.1rem;
      margin-bottom: 20px;
    }

    /* Prayer Request Section */
    .prayer-request-intro {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 50px;
    }

    .prayer-request-intro p {
      font-size: 1.2rem;
      color: var(--text-secondary);
      line-height: 1.8;
    }

    .prayer-request-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .prayer-request-card {
      background: white;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .prayer-info-card {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      border-radius: 20px;
      padding: 40px;
      color: white;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .prayer-info-icon {
      font-size: 3rem;
      margin-bottom: 15px;
    }

    .prayer-info-card h3 {
      font-size: 1.5rem;
      margin-bottom: 12px;
    }

    .prayer-info-card p {
      font-size: 1.05rem;
      line-height: 1.8;
      opacity: 0.95;
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-group label {
      display: block;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 10px;
      font-size: 1rem;
    }

    .form-control {
      width: 100%;
      padding: 14px 18px;
      border: 2px solid #e2e8f0;
      border-radius: 10px;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .form-control:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    }

    textarea.form-control {
      resize: vertical;
      min-height: 150px;
    }

    .form-success {
      display: none;
      background: #d1fae5;
      color: #065f46;
      padding: 18px;
      border-radius: 10px;
      text-align: center;
      margin-top: 20px;
      font-size: 1.05rem;
    }

    .form-success.show {
      display: block;
    }

    /* Responsive */
    @media (max-width: 968px) {
      .prayer-request-container {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.3rem;
      }

      .hero p {
        font-size: 1.2rem;
      }

      .section-title {
        font-size: 2.2rem;
      }

      .intro-card {
        padding: 40px 30px;
      }

      .intro-card h3 {
        font-size: 1.6rem;
      }

      .intro-card p {
        font-size: 1.1rem;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .step-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
      }

      .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
      }

      .prayer-box {
        padding: 40px 30px;
      }

      .prayer-box h3 {
        font-size: 1.8rem;
      }

      .prayer-text {
        font-size: 1.05rem;
        padding: 25px;
      }

      .prayer-request-card,
      .prayer-info-card {
        padding: 30px 25px;
      }
    }

    @media (max-width: 480px) {
    

      section {
        padding: 50px 15px;
      }

      .hero h1 {
        font-size: 1.9rem;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      .btn {
        width: 100%;
        max-width: 320px;
      }

      .intro-card {
        padding: 30px 20px;
      }

      .prayer-request-card,
      .prayer-info-card {
        padding: 25px 20px;
      }
    }
.cookie-banner {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #333;
      color: #fff;
      padding: 15px 20px;
      border-radius: 5px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .cookie-banner p {
      margin: 0;
    }
    .cookie-banner a {
      color: #00aced;
      text-decoration: underline;
    }
    .cookie-close-btn {
      cursor: pointer;
      font-size: 20px;
      margin-left: 10px;
    }
    .cookie-banner button {
      padding: 8px 12px;
      border: none;
      border-radius: 3px;
      cursor: pointer;
    }
    .cookie-banner #accept-cookie {
      background-color: #4CAF50;
      color: white;
    }
    .cookie-banner #reject-cookie {
      background-color: #f44336;
      color: white;
    }
    .btn-primary:hover {
      background-color: #45a049;
    }
    .btn-secondary:hover {
      background-color: #da190b;
    }

.grid {
      max-width: 1100px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 30px;
    }

    .card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 30px -10px rgba(0,0,0,.15);
    }

    .card iframe {
      width: 100%;
      aspect-ratio: 16 / 9;
      height: auto;
      border: none;
    }

    .content {
      padding: 20px;
    }

    .date {
      font-size: .85rem;
      color: #64748b;
    }

    .title {
      font-size: 1.2rem;
      font-weight: 700;
      margin: 8px 0;
    }

    .speaker {
      font-size: .9rem;
      color: #475569;
    }

    .read {
      display: inline-block;
      margin-top: 12px;
      text-decoration: none;
      color: #2563eb;
      font-weight: 600;
    }
