/* Color Palette & Variables */
:root {
    --bg-navy: #0A192F;
    --card-navy: #112240;
    --text-main: #CCD6F6;
    --text-muted: #8892B0;
    --accent-color: #FF6B00; /* Matching the orange dot in the We Arab logo */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-navy);
    color: var(--text-main);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(10, 25, 47, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.logo {
    height: 25px; /* Adjust based on your logo.png dimensions */
}

.logo_home {
    height: 200px; /* Adjust based on your logo.png dimensions */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4.5rem;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.slogan {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

/* App Store Buttons */
.app-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    background-color: var(--card-navy);
    border: 1px solid var(--text-muted);
    padding: 12px 30px;
    border-radius: 8px;
    color: var(--text-muted);
    cursor: not-allowed; /* Shows it's coming soon */
    opacity: 0.8;
    transition: all 0.3s ease;
}

.store-btn i {
    font-size: 2.2rem;
    margin-right: 15px;
}

.btn-text {
    text-align: left;
}

.btn-text span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-text strong {
    font-size: 1.1rem;
    color: var(--text-main);
}

/* Features Grid Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--card-navy);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--accent-color);
}

.feature-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #233554;
    margin-top: 50px;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 15px;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }
    .hero h1 { font-size: 3.5rem; }
    .slogan { font-size: 1.3rem; }
    .features { padding: 20px; }
}