:root {
    --gold: #d19a22;
    --dark: #101010;
    --gray: #666;
    --bg: #f6f6f6;
    --white: #ffffff;
    --radius: 22px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html { scroll-behavior: smooth; }
  
  body {
    font-family: system-ui, Arial, sans-serif;
    background: var(--bg);
    color: var(--dark);
  }
  
  /* NAVBAR */
  .navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    z-index: 999;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .brand-icon {
    background: #f1e8d5;
    padding: 10px 14px;
    border-radius: 14px;
  }
  
  .brand-text {
    font-size: 22px;
    font-weight: 800;
  }
  
  .brand-text .church {
    color: var(--gold);
    margin-left: 6px;
  }
  
  .nav-links {
    display: flex;
    gap: 18px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    opacity: 0.8;
  }
  
  .nav-links a:hover {
    opacity: 1;
    color: var(--gold);
  }
  
  .nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .menu-btn {
    display: none;
    font-size: 26px;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  
  .donate-btn {
    text-decoration: none;
    background: var(--gold);
    color: white;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 700;
  }
  
  /* HERO */
  .hero {
    height: 100vh;
    background: url("https://images.unsplash.com/photo-1520694478167-3e4a2d8a4f0b?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px;
    text-align: center;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(255,255,255,0.15));
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
  }
  
  .pill {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    margin-bottom: 18px;
    font-weight: 600;
  }
  
  .hero-title {
    font-size: 70px;
    font-weight: 900;
    line-height: 1.05;
  }
  
  .white { color: white; }
  .gold { color: var(--gold); }
  
  .hero-desc {
    margin-top: 18px;
    font-size: 18px;
    color: rgba(255,255,255,0.88);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* HERO TIMINGS */
  .hero-times{
    margin-top:20px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
  }
  
  .hero-time-pill{
    background:rgba(255,255,255,0.18);
    border:1px solid rgba(255,255,255,0.35);
    padding:10px 16px;
    border-radius:999px;
    color:white;
    font-weight:700;
    font-size:14px;
  }
  
  /* BUTTONS */
  .btn {
    padding: 15px 30px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
  }
  
  .gold-btn {
    background: var(--gold);
    color: white;
  }
  
  .outline-btn {
    border: 2px solid rgba(255,255,255,0.6);
    color: white;
    background: rgba(255,255,255,0.15);
  }
  
  .white-btn {
    background: white;
    color: var(--dark);
  }
  
  /* SECTION */
  .section {
    padding: 70px 20px;
    max-width: 1100px;
    margin: auto;
  }
  
  .card {
    background: white;
    border-radius: var(--radius);
    padding: 45px;
    border: 1px solid #eee;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    background: #f6f0e3;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .card h2 {
    font-size: 42px;
    margin-bottom: 15px;
  }
  
  .card p {
    color: var(--gray);
    font-size: 18px;
  }
  
  .address {
    margin-top: 18px;
    font-weight: 700;
  }
  
  /* LINKS */
  .gold-link {
    display: inline-block;
    margin-top: 18px;
    text-decoration: none;
    font-weight: 800;
    color: var(--gold);
  }
  
  /* CTA */
  .cta {
    background: var(--gold);
    color: white;
    border-radius: var(--radius);
    padding: 60px;
  }
  
  .cta h2 {
    font-size: 48px;
    margin-bottom: 12px;
  }
  
  .cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
  }
  
  /* SECTION TITLE */
  .section-title {
    text-align: center;
    margin-bottom: 35px;
  }
  
  .section-title h2 {
    font-size: 50px;
  }
  
  .section-title p {
    margin-top: 10px;
    color: var(--gray);
    font-size: 18px;
  }
  
  .underline {
    width: 90px;
    height: 5px;
    background: var(--gold);
    margin: 14px auto 0;
    border-radius: 10px;
  }
  
  /* GRID */
  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  
  .grid .mini-card {
    background: white;
    border-radius: var(--radius);
    padding: 35px;
    border: 1px solid #eee;
    box-shadow: 0 12px 25px rgba(0,0,0,0.04);
    text-align: center;
  }
  
  .mini-card h3 {
    font-size: 22px;
    margin-top: 12px;
  }
  
  .mini-card p {
    margin-top: 10px;
    color: var(--gray);
  }
  
  /* SERVICE TIMES */
  .time-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    font-size: 18px;
  }
  
  .time-row:last-child { border-bottom: none; }
  
  .time-row span:last-child {
    font-weight: 900;
  }
  
  /* SONG SEARCH */
  .search {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 25px;
    display: block;
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid #ddd;
    font-size: 16px;
  }
  
  /* SONG VIEW */
  .song-view {
    display: none;
    margin-top: 30px;
    background: white;
    border-radius: var(--radius);
    padding: 35px;
    border: 1px solid #eee;
  }
  
  .song-view pre {
    margin-top: 18px;
    white-space: pre-wrap;
    line-height: 1.6;
  }
  
  /* FORM */
  .form {
    max-width: 650px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .form input,
  .form textarea {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
  }
  
  .form textarea {
    min-height: 140px;
  }
  
  .success {
    color: green;
    font-weight: 800;
    margin-top: 10px;
  }
  
  /* FOOTER */
  .footer {
    padding: 70px 20px;
    background: white;
    border-top: 1px solid #eee;
    text-align: center;
  }
  
  .footer h3 {
    font-size: 26px;
  }
  
  .footer p {
    margin-top: 10px;
    color: var(--gray);
  }
  
  .copyright {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
  }
  
  /* RESPONSIVE */
  @media (max-width: 900px) {
    .grid { grid-template-columns: 1fr; }
  
    .hero-title { font-size: 48px; }
  
    .nav-links {
      display: none;
      flex-direction: column;
      background: white;
      position: absolute;
      right: 20px;
      top: 70px;
      padding: 20px;
      border-radius: 14px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }
  
    .menu-btn { display: block; }
  
    .card h2 { font-size: 32px; }
  
    .section-title h2 { font-size: 36px; }
  
    .cta h2 { font-size: 36px; }
  }
  