/* Global Reset & Base Styles */
:root {
    --bg-dark-start: #004D55;
    /* Deep Teal */
    --bg-dark-end: #001a2c;
    /* Midnight Blue */
    --bg-light: #F9F9F9;
    /* Very Light Cream */
    --accent-gold: #C49A4E;
    /* Gold */
    --text-cream: #FBEFCE;
    /* Cream */
    --text-dark: #001a2c;
    /* Dark Blue */
    --white: #FFFFFF;

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* SECTION 1: The Hero (Header) area */
.hero-section {
    background: linear-gradient(135deg, var(--bg-dark-start), var(--bg-dark-end));
    color: var(--text-cream);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.navbar {
    padding: 20px 0;
}

.logo-container {
    width: 64px;
    height: 64px;
}

.app-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.logo-placeholder {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.hero-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    padding: 40px 0;
    gap: 40px;
}

@media (min-width: 992px) {
    .hero-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .hero-text {
        max-width: 50%;
        align-items: flex-start;
    }

    .hero-image {
        max-width: 45%;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.headline {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-cream);
}

.brand-name {
    color: var(--accent-gold);
    display: block;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    justify-content: center;
}

@media (min-width: 992px) {
    .cta-buttons {
        justify-content: flex-start;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 12px;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--text-dark);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 10px 20px rgba(196, 154, 78, 0.2);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(196, 154, 78, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-cream);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}


.store-icon {
    width: 24px;
    height: 24px;
}



.hero-image {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background-color: #1a1a1a;
    border-radius: 36px;
    border: 8px solid #333;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.screen-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #004D55, #001a2c);
    display: flex;
    align-items: center;
    justify-content: center;
}

.glowing-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 30px rgba(196, 154, 78, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-cream);
}

.time-remaining {
    font-size: 2rem;
    font-weight: 700;
}

.next-prayer {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 5px;
}

/* SECTION 2: Key Features (The "Why Us") */
.features-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-family: var(--font-secondary);
    color: var(--text-dark);
}

.brand-name-inline {
    color: var(--accent-gold);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    color: var(--text-dark);
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-desc {
    color: #555;
    font-size: 0.95rem;
}

/* SECTION 2.5: Daily Inspiration */
.inspiration-section {
    background: linear-gradient(135deg, var(--bg-dark-start), var(--bg-dark-end));
    padding: 60px 0;
    color: var(--text-cream);
}

.inspiration-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(196, 154, 78, 0.2);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.inspiration-label {
    display: block;
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.inspiration-text {
    font-size: 1.5rem;
    font-family: var(--font-secondary);
    margin-bottom: 15px;
    font-style: italic;
}

.inspiration-source {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* SECTION 3: The Footer (Trust & Legal) */
.footer-section {
    background-color: #00121d;
    color: rgba(255, 255, 255, 0.4);
    padding: 40px 0;
    font-size: 0.85rem;
}


.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-gold);
}