/* Simple Zakat - Main Stylesheet */

/* ===== RESET & BASE STYLES ===== */
* {
    box-sizing: border-box;
}

/* ===== CONTAINER & GRID SYSTEM ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    padding: 0 15px;
    flex: 1;
}

.col.s12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col.m6 {
    flex: 0 0 50%;
    max-width: 50%;
}

@media (max-width: 768px) {
    .col.m6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

body {
    background-color: #ECECEC;
    font-family: 'Nunito Sans', sans-serif;
    color: #2C2C2C;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    color: #2C2C2C;
}

p {
    font-size: 1.2rem;
    color: #707070;
    line-height: 1.6;
}

.bold {
    font-weight: 600 !important;
}

/* ===== LAYOUT COMPONENTS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section--hero {
    background: #2C2C2C;
    color: #ECECEC;
    text-align: center;
}

.section--features {
    background-color: #ECECEC;
}

.section--screenshots {
    background-color: #fff;
}

/* ===== HEADER & NAVIGATION ===== */
/* Header removed - clean single page layout */

/* ===== BUTTONS ===== */
.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn--primary {
    background-color: #2C2C2C;
    color: white;
}

.btn--primary:hover {
    background-color: #404040;
    color: white;
}

.btn--secondary {
    background-color: transparent;
    color: #2C2C2C;
    border: 2px solid #2C2C2C;
}

.btn--secondary:hover {
    background-color: #2C2C2C;
    color: white;
}

/* ===== HERO SECTION ===== */
.hero {
    text-align: center;
    padding: 4rem 0;
}

.hero__logo {
    width: 240px;
    margin: 0 auto 2rem;
    display: block;
}

.hero__title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ECECEC;
}

.hero__subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: #c8c5c5;
    font-weight: 500;
}

.hero__description {
    font-size: 1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    color: #c8c5c5;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FEATURE CARDS ===== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Feature card icon removed - using screenshots instead */

.feature-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2C2C2C;
}

.feature-card__description {
    color: #707070;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.feature-card__screenshot {
    width: 100%;
    max-width: 120px;
    height: 120px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #ECECEC;
    padding: 1rem;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    display: block;
}

/* ===== SCREENSHOTS (removed - now integrated into feature cards) ===== */

/* ===== APP STORE BADGES ===== */
.app-store-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.app-store-badge {
    height: 60px;
    width: auto;
    max-width: 180px;
    transition: transform 0.3s ease;
    display: block;
    object-fit: contain;
}

/* Google Play badge needs larger height due to transparent padding */
.app-store-badge[src*="google-play"] {
    height: 80px;
    max-width: 200px;
}

.app-store-badge:hover {
    transform: scale(1.05);
}

/* ===== ABOUT SECTION ===== */
#about {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

#about h2 {
    color: #2C2C2C;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.about__subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0.9;
}

#about p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #555;
}

#about a {
    color: #2C2C2C;
    text-decoration: none;
    font-weight: 600;
}

#about a:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #ECECEC;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid #ddd;
}

.footer__content {
    color: #707070;
    font-size: 1rem;
}

.footer__content a {
    color: #2C2C2C;
    text-decoration: none;
}

.footer__content a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media only screen and (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
    
    .hero__description {
        font-size: 1.2rem;
    }
    
    .about__subtitle {
        font-size: 1.1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card__screenshot {
        max-width: 100px;
        height: 100px;
    }
    
    .app-store-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .app-store-badge {
        height: 50px;
        max-width: 150px;
    }
    
    .app-store-badge[src*="google-play"] {
        height: 65px;
        max-width: 170px;
    }
    
    /* Navigation removed - single page layout */
}

@media only screen and (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 0.9rem;
    }
    
    .hero__description {
        font-size: 1rem;
    }
    
    .about__subtitle {
        font-size: 1rem;
    }
    
    .feature-card__screenshot {
        max-width: 80px;
        height: 80px;
    }
    
    .app-store-badge {
        height: 45px;
        max-width: 135px;
    }
    
    .app-store-badge[src*="google-play"] {
        height: 60px;
        max-width: 155px;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 2px solid #2C2C2C;
    outline-offset: 2px;
}

/* Navigation removed - single page layout */
