@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Amiri:wght@400;700&display=swap');

:root {
    --bg-dark: #0F172A;
    --bg-surface: rgba(30, 41, 59, 0.7);
    --gold: #FACC15;
    --gold-glow: rgba(250, 204, 21, 0.3);
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* RTL Support for Arabic/Kurdish */
body.rtl {
    direction: rtl;
    font-family: 'Amiri', 'Outfit', serif;
}

/* Glassmorphism Utilities */
.glass {
    background: var(--bg-surface);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Language Switcher */
.lang-switcher {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    cursor: pointer;
}

.lang-switcher option {
    background: var(--bg-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

/* Background Glow */
.glow-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(60px);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    margin-top: 5rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    color: var(--gold);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--gold-glow);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.app-icon {
    width: 300px;
    height: 300px;
    border-radius: 64px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Sections */
.section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--gold);
}

.text-content {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.text-content h2, .text-content h3 {
    color: var(--text-primary);
    margin: 2rem 0 1rem;
}

.text-content p {
    margin-bottom: 1rem;
}

.text-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.rtl .text-content ul {
    margin-left: 0;
    margin-right: 2rem;
}

/* Download Page Specific */
.download-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
    margin-top: 10vh;
}

.download-card img {
    width: 150px;
    border-radius: 32px;
    margin-bottom: 2rem;
}

.download-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 5%;
    border-top: 1px solid var(--glass-border);
    margin-top: 5rem;
    color: var(--text-secondary);
}

.footer-links {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

/* Utility Classes */
.footer-rights {
    margin-top: 1rem;
}

.section-top-margin {
    margin-top: 5rem;
}

.text-content-padding {
    padding: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        margin-top: 6rem;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .nav-links {
        display: none; /* In a real app we'd add a hamburger menu */
    }
}
