@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

body {
    background-color: #F8F7FF;
    color: #2C2C2C;
    font-family: 'Inter', sans-serif;
}

nav {
    background-color: #2D2640;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.nav-center {
    flex: 1;
}

.nav-brand {
    color: rgba(255, 255, 255, 0.90);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Lora', serif;
    letter-spacing: 1px;
}

.nav-tagline {
    color: rgba(200, 219, 201, 0.75);
    font-size: 11px;
    font-style: italic;
    font-family: 'Lora', serif;
    margin-top: 3px;
    letter-spacing: 0.3px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.80);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: #C8DBC9;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: rgba(255,255,255,0.85);
    font-size: 26px;
    cursor: pointer;
    padding: 0;
}

.mobile-menu {
    display: none;
    background-color: #3D6B50;
    padding: 10px 0;
}

.mobile-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.mobile-menu a:hover {
    background-color: #7B6FA0;
}

.hero {
    background: linear-gradient(160deg, #2D2640 0%, #3D6B50 100%);
    padding: 55px 30px;
    text-align: center;
    color: white;
    position: relative;
}

.greeting {
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #C8DBC9;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 28px;
    font-family: 'Lora', serif;
    font-weight: 600;
    margin-bottom: 14px;
    color: white;
    border: none;
    padding: 0;
    line-height: 1.5;
}

.hero-tagline {
    font-size: 15px;
    color: #B8A9D9;
    margin-bottom: 0;
    font-style: italic;
    font-family: 'Lora', serif;
}

.today-section {
    max-width: 800px;
    margin: 35px auto;
    padding: 0 20px;
}

.section-title {
    color: #7B6FA0;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #3D6B50;
}

.container {
    max-width: 800px;
    margin: 35px auto;
    padding: 0 20px;
}

h1 {
    color: #7B6FA0;
    font-size: 24px;
    font-family: 'Lora', serif;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3D6B50;
}

h2 {
    color: #3D6B50;
    font-size: 18px;
    font-family: 'Lora', serif;
    margin-bottom: 10px;
    font-weight: 600;
}

p {
    line-height: 1.85;
    margin-bottom: 15px;
    color: #444;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
}

.devotional-card {
    background: white;
    border-left: 5px solid #3D6B50;
    border-top: 3px solid #7B6FA0;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(123, 111, 160, 0.12);
}

.verse {
    color: #3D6B50;
    font-style: italic;
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: 'Lora', serif;
}

a {
    color: #3D6B50;
}

a:hover {
    color: #7B6FA0;
}

footer {
    background-color: #2D2640;
    text-align: center;
    padding: 25px;
    color: #B8A9D9;
    font-size: 13px;
    margin-top: 60px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    nav {
        padding: 12px 15px;
    }

    .nav-links {
        display: none;
    }

    .nav-brand {
        font-size: 16px;
    }

    .hamburger {
        display: block;
    }

    .hero {
        padding: 40px 20px;
    }

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

    .greeting {
        font-size: 12px;
    }

    body {
        padding-bottom: 70px;
    }

    .today-section {
        margin: 20px auto;
        padding: 0 15px;
    }

    .container {
        margin: 20px auto;
        padding: 0 15px;
    }

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 17px;
    }

    p {
        font-size: 15px;
        line-height: 1.9;
    }

    .devotional-card {
        padding: 18px;
    }

    footer {
        display: none;
    }

    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background-color: white;
        border-top: 1px solid #e0e0e0;
        z-index: 1000;
        padding: 6px 0 10px 0;
        justify-content: space-around;
        align-items: center;
    }

    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #999;
        flex: 1;
        padding: 4px 0;
    }

    .bottom-nav-item:hover {
        color: #7B6FA0;
    }

    .bottom-nav-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 4px;
        fill: #999;
    }

    .bottom-nav-label {
        font-size: 10px;
        font-family: 'Inter', sans-serif;
        color: #999;
        text-align: center;
    }
}
