@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;
}

:root {
    --white: #ffffff;
    --soft-white: rgba(255, 255, 255, 0.88);
    --text-dark: #4d4c7b;
    --text-soft: #6a6896;
    --glass-bg: rgba(255, 255, 255, 0.14);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-card: rgba(255, 255, 255, 0.16);
    --accent-1: #8d79ff;
    --accent-2: #ff74b6;
    --shadow-main: 0 20px 60px rgba(93, 81, 170, 0.22);
    --shadow-soft: 0 16px 34px rgba(95, 80, 160, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Poppins, Arial, sans-serif;
    background: #d9ddff;
}

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

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image:
        linear-gradient(rgba(90, 95, 220, 0.12), rgba(120, 90, 220, 0.16)),
        url("/assets/images/jesus.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.10), transparent 35%),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08));
    pointer-events: none;
}

/* NAVBAR */

.navbar {
    position: sticky;
    top: 0;
    z-index: 30;
    width: 100%;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 35px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.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);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    position: relative;
    color: white;
    font-size: 24px;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    transition: 0.25s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.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, var(--accent-1), var(--accent-2));
    box-shadow: 0 6px 18px rgba(141, 121, 255, 0.28);
}

.login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #b14cff, #ff4f8b);
    color: white;
    padding: 12px 24px;
    border-radius: 999px;
    cursor: pointer;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 10px 22px rgba(177, 76, 255, 0.22);
    transition: 0.25s ease;
}

.login:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(177, 76, 255, 0.28);
}

/* HERO CONTENT */

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ARCH BLOCK */

.verse-arch {
    width: 100%;
    max-width: 560px;
    min-height: 760px;
    margin-top: 20px;
    padding: 70px 38px 40px;
    position: relative;

    border: 2px solid rgba(255, 255, 255, 0.28);
    border-bottom: none;
    border-radius: 280px 280px 0 0;

    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.16),
            rgba(255, 255, 255, 0.07));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 24px 70px rgba(140, 120, 255, 0.16);

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.verse-arch::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.16);
}

.arch-glow {
    position: absolute;
    inset: 0;
    border-radius: 280px 280px 0 0;
    background:
        radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.18), transparent 38%),
        radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.06), transparent 50%);
    pointer-events: none;
}

.arch-particles {
    position: absolute;
    inset: 0;
    border-radius: 280px 280px 0 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.10) 1px, transparent 1px);
    background-size: 90px 90px, 120px 120px;
    background-position: 10px 20px, 40px 60px;
    opacity: 0.35;
    pointer-events: none;
}

.verse-top {
    margin-top: 26px;
    font-size: 48px;
    line-height: 1.18;
    color: rgba(255, 255, 255, 0.96);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 600;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.20);
}

.dove-gif {
    width: 205px;
    height: auto;
    margin-top: 24px;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(255, 255, 255, 0.35));
    animation: doveFloat 4s ease-in-out infinite;
}

@keyframes doveFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.verse-middle {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 24px;
    line-height: 1.65;
    font-family: Georgia, "Times New Roman", serif;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
}

.verse-reference {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 22px;
    font-family: Georgia, "Times New Roman", serif;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.hero-message {
    margin-top: 38px;
    max-width: 460px;
    color: #4d4c7b;
    font-size: 19px;
    line-height: 1.65;
    font-weight: 500;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 999px;
    cursor: pointer;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: 0.25s ease;
}

.primary-btn {
    color: white;
    background: linear-gradient(to right, var(--accent-1), var(--accent-2));
    box-shadow: 0 14px 28px rgba(141, 121, 255, 0.22);
}

.secondary-btn {
    color: white;
    background: linear-gradient(to right, #907fff, #ff77b8);
    box-shadow: 0 14px 28px rgba(141, 121, 255, 0.20);
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 18px 34px rgba(141, 121, 255, 0.28);
}

/* FEATURE CARDS */

.feature-cards {
    width: 100%;
    max-width: 760px;
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 30px 28px;
    border-radius: 28px;
    background: var(--glass-card);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    transition: 0.28s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(87, 71, 152, 0.18);
    background: rgba(255, 255, 255, 0.20);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.18);
    color: white;
    box-shadow: 0 10px 22px rgba(255, 255, 255, 0.08);
}

.feature-card h3 {
    color: #4f4b7f;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 14px;
}

.feature-card p {
    color: #6a6896;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-card a {
    color: #5f5dcf;
    font-size: 18px;
    font-weight: 600;
    transition: 0.2s ease;
}

.feature-card a:hover {
    color: #7a5dff;
}

/* SOCIALS */

.socials {
    margin-top: 42px;
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
}

.socials a {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    color: white;

    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 12px 26px rgba(104, 90, 170, 0.12);
    transition: 0.25s ease;
}

.socials a:hover {
    transform: translateY(-4px) scale(1.08);
    background: linear-gradient(to right, var(--accent-1), var(--accent-2));
    box-shadow: 0 18px 30px rgba(141, 121, 255, 0.22);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .verse-arch {
        max-width: 500px;
        min-height: 720px;
    }

    .verse-top {
        font-size: 40px;
    }

    .verse-middle {
        font-size: 22px;
    }
}

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

    .nav-right {
        flex-direction: column;
        gap: 18px;
    }

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

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

    .verse-arch {
        max-width: 100%;
        min-height: auto;
        padding: 52px 24px 34px;
    }

    .verse-top {
        font-size: 34px;
    }

    .dove-gif {
        width: 165px;
    }

    .verse-middle {
        font-size: 20px;
    }

    .verse-reference {
        font-size: 20px;
    }

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

    .feature-cards {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}

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

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

    .login {
        font-size: 16px;
        padding: 11px 20px;
    }

    .verse-arch {
        border-radius: 160px 160px 0 0;
        padding: 40px 18px 28px;
    }

    .arch-glow,
    .arch-particles {
        border-radius: 160px 160px 0 0;
    }

    .verse-top {
        margin-top: 10px;
        font-size: 28px;
    }

    .dove-gif {
        width: 140px;
        margin-top: 22px;
    }

    .verse-middle {
        font-size: 18px;
    }

    .verse-reference {
        font-size: 18px;
    }

    .hero-message {
        margin-top: 30px;
        font-size: 16px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        font-size: 16px;
        padding: 14px 22px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p,
    .feature-card a {
        font-size: 16px;
    }

    .socials a {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }
}