@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

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

body {
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    color: white;
    background: #0f1f5e;
}

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

.belief-page {
    min-height: 100vh;
    background-image:
        linear-gradient(rgba(43, 62, 146, 0.35), rgba(24, 42, 109, 0.55)),
        url("../assets/images/updated-bg.png");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 52px;
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(6px);
}

.logo a {
    color: white;
    font-size: 55px;
    font-family: "Great Vibes", cursive;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.menu a {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: 0.25s ease;
    position: relative;
}

.menu a:hover,
.menu a.active {
    color: #ffffff;
}

.menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(to right, #8c7cff, #ff74b8);
}

.login-btn {
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(to right, #9a61ff, #ff5da8);
    color: white;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(172, 97, 255, 0.22);
    transition: 0.25s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(172, 97, 255, 0.28);
}

.belief-content {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.hero-section {
    text-align: center;
    padding: 40px 0 28px;
}

.hero-subtitle {
    font-size: 42px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 4px;
}

.hero-title {
    font-size: 110px;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -2px;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.hero-description {
    font-size: 28px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 22px;
}

.hero-line {
    width: 170px;
    height: 6px;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(to right, #8c7cff, #ff74b8);
    box-shadow: 0 8px 18px rgba(172, 97, 255, 0.24);
}

.belief-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 26px;
    margin-top: 34px;
}

.belief-card {
    min-height: 290px;
    padding: 28px 28px 24px;
    border-radius: 30px;
    background: rgba(63, 89, 188, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 38px rgba(22, 32, 80, 0.18);
    transition: 0.28s ease;
}

.belief-card:hover {
    transform: translateY(-6px);
    background: rgba(78, 106, 214, 0.33);
    box-shadow: 0 22px 45px rgba(22, 32, 80, 0.24);
}

.belief-card-wide {
    grid-column: span 2;
}

.belief-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
    color: #f2eeff;
    background: rgba(255, 255, 255, 0.08);
}

.belief-card h2 {
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.belief-card p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 22px;
}

.verses {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.verses span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(146, 128, 255, 0.24);
    color: #f5f2ff;
    font-size: 14px;
    font-weight: 600;
}

.verses span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c89cff;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 86px;
    }

    .hero-description {
        font-size: 22px;
    }

    .belief-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
    }

    .belief-card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 22px 24px;
        gap: 18px;
        flex-wrap: wrap;
    }

    .menu {
        gap: 18px;
        flex-wrap: wrap;
    }

    .hero-subtitle {
        font-size: 30px;
    }

    .hero-title {
        font-size: 64px;
    }

    .hero-description {
        font-size: 18px;
    }

    .belief-grid {
        grid-template-columns: 1fr;
    }

    .belief-card-wide {
        grid-column: span 1;
    }
}

@media (max-width: 560px) {
    .logo a {
        font-size: 18px;
    }

    .menu a {
        font-size: 16px;
    }

    .login-btn {
        padding: 12px 20px;
        font-size: 15px;
    }

    .hero-section {
        padding-top: 20px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.5;
    }

    .belief-card {
        padding: 22px 20px 20px;
        min-height: auto;
        border-radius: 24px;
    }

    .belief-card h2 {
        font-size: 20px;
    }

    .belief-card p {
        font-size: 15px;
    }

    .verses span {
        font-size: 13px;
        padding: 9px 14px;
    }
}