* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #4682B4; /* Fallback color */
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://e1.pxfuel.com/desktop-wallpaper/402/664/desktop-wallpaper-church.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Navbar blur effect on scroll */
.navbar {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://e1.pxfuel.com/desktop-wallpaper/402/664/desktop-wallpaper-church.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.3s, backdrop-filter 0.3s;
}
.navbar.scrolled {
    background: rgba(40,44,52,0.85);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    position: relative;
    width: 100%;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff; /* Untuk Ganti warna Title */
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-logo svg {
    vertical-align: middle;
}

.navbar-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
    scroll-behavior: smooth;
}

.navbar-menu li a:hover {
    color: #f9b233;
}

.navbar-login {
    background: #00008B;
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s;
}

.navbar-login:hover {
    background: #377dff;
    color: #fff;
}


.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 2rem 2rem;
  color: #fff;
  min-height: 35vh;
}

.hero-content {
  margin-top: 0rem;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 2;
  margin-bottom: 2rem;
}

.hero-content p {
     font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
}

.hero-categories {
    display: flex;
    gap: 1.5rem;
    justify-content: center;  
    flex-wrap: wrap;
}

.category {
    background: rgba(255,255,255,0.60);
    color: #00008B;
    padding: 0.8rem 2.2rem;
    border-radius: 0.8rem;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 0.7rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    margin-bottom: 1.5rem;
    transition: background 0.2s, color 0.2s;
}

.category:hover {
    background: rgba(255,255,255,0.3);
    color: #FFFF00;
}

.material-icons {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    margin: rem 0.5rem 0rem 0rem;
    border: 0rem solid rgb(229, 231, 235);
    color: #00008B;
    font-size: 1.50rem;
    font-family: 'Material Icons';
    line-height: 1.5rem;    
    text-align: center;    
    transition: all 0.3s ease;
    border-style: solid;
}

.material-icons:hover {
    border-color: currentColor;
}

/* How To Section */
.howto {
    padding: 4rem 0 2rem 0;
    background: #fff;
    text-align: center;
}
.howto h2 {
    margin-top: 0rem;
    font-size: 2.5rem;
    color: #2C323A;
    margin-bottom: 2rem;
}
.howto-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.howto-card {
    background: #E6E6FA !important;
    border-radius: 1.2rem;
    box-shadow: none;
    padding: 2rem 1.5rem;
    width: 260px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), text-decoration-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), fill 0.3s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.3s cubic-bezier(0.4, 0, 0.2, 1), text-decoration-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: matrix(1.05, 0, 0, 1.05, 0, 0);
    border: 0rem solid rgb(229, 231, 235);
    border-style: solid;
}
.howto-card:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    border-color: currentColor;
}
.howto-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: #377dff;
}

.howto-icon .material-icons {
    font-size: 2.5rem;
    margin: 0;
    width: auto;
    height: auto;
}

/* Warna icon berbeda untuk setiap card */
.howto-card:nth-child(1) .howto-icon .material-icons {
    color: #3b82f6; /* Biru untuk Daftar Akun */
}

.howto-card:nth-child(2) .howto-icon .material-icons {
    color: #39e600; /* Hijau untuk Bergabung Komunitas */
}

.howto-card:nth-child(3) .howto-icon .material-icons {
    color: #8b5cf6; /* Ungu untuk Berbagi Konten */
}

/* Styling teks dalam card */
.howto-card h3 {
    color: #00000;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.howto-card p {
    color: #00000;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Info Program Section */
.info-program {
    padding: 5rem 0rem;
    background-color: #fff;
    font-family: Inter, sans-serif;
    line-height: 1.5rem;
    text-align: center;
}
.info-program h2 {
    font-size: 2.2rem;
    color: #00000;
    margin-bottom: 2rem;
}
.program-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.program-card {
    background: #E6E6FA;
    border-radius: 1.2rem;
    box-shadow: none;
    padding: 2rem 1.5rem;
    width: 260px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
/* Menghapus hover effect */
.program-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
}

/* Warna icon berbeda untuk setiap program card */
.program-card:nth-child(1) .program-icon .material-icons {
    color: #4A90E2; /* Biru untuk Renungan Harian */
    font-size: 3rem;
}

.program-card:nth-child(2) .program-icon .material-icons {
    color: #FF0000; /* Merah untuk Video Inspiratif */
    font-size: 3rem;
}

.program-card:nth-child(3) .program-icon .material-icons {
    color: #4CAF50; /* Hijau untuk E-Book Digital */
    font-size: 3rem;
}

.program-card:nth-child(4) .program-icon .material-icons {
    color: #FFA500; /* Orange untuk Berita Terkini */
    font-size: 3rem;
}

/* Styling teks dalam program card */
.program-card h3 {
    color: #00000;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.program-card p {
    color: #00000;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Preview Section */
.preview {
    padding: 4rem 0 2rem 0;
    background: #fff;
    text-align: center;
}
.preview h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}
.preview-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.preview-card {
    background: #f5f5f5;
    border-radius: 0.8rem;
    box-shadow: none;
    padding: 2rem 1.5rem;
    width: 220px;
    height: 120px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preview-icon {
    width: 48px;
    height: 48px;
    margin: 0;
}


.preview-icon .material-icons {
    color: #333;
    font-size: 2.5rem;
}

/* About Section */
.about {
    padding: 4rem 0 2rem 0;
    background: #f3f4f6;
    text-align: center;
}
.about h2 {
    font-size: 2.6rem;
    color: #232b36;
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.about-desc {
    color: #444;
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.about-features {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}
.about-feature {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    width: 320px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-feature:nth-child(1) .about-icon .material-icons {
    color: #2563eb;
    font-size: 3rem;
}
.about-feature:nth-child(2) .about-icon .material-icons {
    color: #22c55e;
    font-size: 3rem;
}
.about-feature:nth-child(3) .about-icon .material-icons {
    color: #a21caf;
    font-size: 3rem;
}
.about-feature h3 {
    color: #111;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}
.about-feature p {
    color: #6b7280;
    font-size: 1.1rem;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 4rem 0 2rem 0;
    background: #fff;
    text-align: center;
}
.contact h2 {
    font-size: 2.6rem;
    color: #232b36;
    margin-bottom: 2.5rem;
    font-weight: 700;
}
.contact-flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}
.contact-info {
    flex: 1;
    text-align: left;
    margin-top: 0.5rem;
}
.contact-info h3 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.contact-item {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #222;
    gap: 0.7rem;
}
.contact-icon {
    font-size: 2rem;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-icon.email { color: #2563eb; }
.contact-icon.phone { color: #22c55e; }
.contact-icon.location { color: #ef4444; }
.contact-form {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 420px;
    margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.1rem 1.2rem;
    border-radius: 0.7rem;
    border: 1px solid #d1d5db;
    font-size: 1.1rem;
    background: #fff;
    color: #222;
    resize: none;
    outline: none;
    transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid #2563eb;
}
.contact-form button {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 0.7rem;
    padding: 1.1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
    display: block;
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.contact-form button:hover {
    background: #1746a2;
}

/* Footer */
.footer {
    background: #282c34;
    color: #fff;
    text-align: center;
    padding: 1.2rem 0;
    font-size: 1rem;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .navbar-container {
        padding: 0.5rem 1rem;
    }
    .howto-steps, .program-list, .preview-list, .about-features {
        gap: 1rem;
    }
    .howto-card, .program-card, .about-feature {
        width: 200px;
        padding: 1.2rem 0.7rem;
    }
    .preview-card {
        width: 150px;
        padding: 1.2rem 0.7rem;
    }
    .contact-flex {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }
    .contact-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0.5rem 1rem;
    }
    
    .navbar-menu {
        display: none;
    }
    
    .navbar-login {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 2rem;
    }
    
    .hero-categories {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .category {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .howto-steps, .program-list, .preview-list, .about-features {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .howto-card, .program-card, .about-feature, .preview-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .contact-flex {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-form {
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .navbar-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
    }
    .navbar-logo {
        font-size: 1.2rem;
    }
    .navbar-logo img {
        width: 24px;
        height: 24px;
    }
    .navbar-menu {
        display: none;
    }
    .navbar-login {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        white-space: nowrap;
        min-width: 80px;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-categories {
        gap: 0.7rem;
    }
    .category {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    .howto-steps, .program-list, .preview-list, .about-features {
        flex-direction: column;
        align-items: center;
    }
    .howto-card, .program-card, .about-feature, .preview-card {
        width: 100%;
        max-width: 350px;
    }
    .contact-form {
        max-width: 100%;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .navbar-logo {
        font-size: 1.1rem;
    }
    
    .navbar-logo img {
        width: 28px;
        height: 28px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .category {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }
    
    .howto h2, .info-program h2, .preview h2, .about h2, .contact h2 {
        font-size: 1.8rem;
    }
    
    .howto-card, .program-card, .about-feature, .preview-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-form input, .contact-form textarea {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .contact-form button {
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-width: 400px;
        padding: 1.5rem;
    }
    
    .register-modal-content {
        margin: 5% auto;
        width: 95%;
        max-width: 400px;
        padding: 1.5rem;
    }
}

/* Login Modal */
.login-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.login-modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.close-login {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s;
}

.close-login:hover {
    color: #000;
}

.login-title {
    color: #8b5cf6;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input {
    padding: 0.8rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: #fff;
}

.form-group input:focus {
    outline: none;
    border-color: #8b5cf6;
}

.login-btn {
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 0.5rem;
}

.login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.login-btn .material-icons {
    font-size: 1.2rem;
}

.register-link {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.register-link a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.register-link a:hover {
    color: #7c3aed;
    text-decoration: underline;
}

/* Register Modal Specific Styles */
.register-modal-content {
    background-color: #fff;
    margin: 8% auto;
    padding: 1.5rem;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-height: 75vh;
    overflow-y: auto;
}

.account-type-section {
    margin: 2rem 0;
}

.account-type-title {
    text-align: center;
    color: #333;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.account-type-cards {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.account-type-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    flex: 1;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.account-type-card:hover {
    border-color: #8b5cf6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.2);
}

.account-type-card.selected {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.account-icon {
    margin-bottom: 1rem;
    width: 100%;
    height: 60px;
    text-align: center;
}

.account-icon .material-icons {
    font-size: 3rem;
    color: #8b5cf6;
}

.account-type-card h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    text-align: center;
    width: 100%;
    display: block;
    position: relative;
}

/* Member Registration Form */
.member-form-section, .church-form-section {
    margin-top: 1rem;
}

.member-registration-form, .church-registration-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-help {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    font-style: italic;
}

.member-register-btn, .church-register-btn {
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 0.5rem;
}

.member-register-btn:hover, .church-register-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.member-register-btn .material-icons, .church-register-btn .material-icons {
    font-size: 1.2rem;
}

.back-btn {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.back-btn:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

textarea {
    padding: 0.8rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: #fff;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
}

textarea:focus {
    outline: none;
    border-color: #8b5cf6;
}

select {
    padding: 0.8rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: #fff;
    font-family: inherit;
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: #8b5cf6;
}

/* Mobile responsive for account type cards */
@media (max-width: 600px) {
    .account-type-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .account-type-card {
        width: 100%;
        max-width: 250px;
    }
    
    .member-registration-form, .church-registration-form {
        gap: 1rem;
    }
    
    .member-register-btn, .church-register-btn, .back-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

.form-error {
    color: #f44336;
    background: #ffeaea;
    border-radius: 6px;
    padding: 0.7rem 1rem;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.98rem;
}
.form-success {
    color: #388e3c;
    background: #eaffea;
    border-radius: 6px;
    padding: 0.7rem 1rem;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.98rem;
}

/* Event Section - Card Layout */
.event-section {
    margin-bottom: 2rem;
    background: #1a1a2e;
    border-radius: 12px;
    padding: 1.5rem;
}

.event-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.event-title-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-title-section h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.event-icon {
    color: #43b04a;
    font-size: 1.5rem;
}

.see-all-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.see-all-link:hover {
    text-decoration: underline;
}

.event-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.event-image {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: white;
}

.event-image.sunset {
    background-image: url('https://images.unsplash.com/photo-1511632765486-a01980e01a18?w=300&h=150&fit=crop');
}

.event-image.wave {
    background-image: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?w=300&h=150&fit=crop');
}

.event-image.jesus {
    background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=300&h=150&fit=crop');
    font-size: 2.5rem;
    font-weight: 900;
}

.event-content {
    padding: 1.2rem;
}

.event-label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.75rem;
}

.event-label.green { background: #b6f5c1; color: #219150; }
.event-label.orange { background: #ffe0b2; color: #ff9800; }
.event-label.purple { background: #e1bee7; color: #9c27b0; }

.event-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.event-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.event-description {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.event-btn {
    background: #43b04a;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: background-color 0.3s;
    width: 100%;
    justify-content: center;
}

.event-btn:hover {
    background: #2e7d32;
}

.event-btn .material-icons {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .event-cards {
        grid-template-columns: 1fr;
    }
}

/* Video Section */
.video-section {
    margin-bottom: 2rem;
}
.video-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.video-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.video-image {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
}
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(229,57,53,0.95);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.play-icon .material-icons {
    color: #fff;
    font-size: 1.7rem;
}
.video-content {
    padding: 1.2rem;
}
.video-header {
    margin-bottom: 0.75rem;
}
.video-label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
}
.video-label.red { background: #ffcdd2; color: #e53935; }
.video-label.gray { background: #f5f5f5; color: #666; }
.video-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}
.video-info {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.video-description {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.video-btn {
    background: #e53935;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: background-color 0.3s;
    width: 100%;
    justify-content: center;
}
.video-btn:hover {
    background: #b71c1c;
}
.video-btn .material-icons {
    font-size: 1.1rem;
}
