/* AbayaHub - Coming Soon (Light Theme) */

:root {
    --brand: #740F35;
    --brand-dark: #5E0C2B;
    --gold: #C9A36A;
    --gold-light: #dfc9a0;
    --bg: #FAFAFA;
    --bg-2: #F5F5F5;
    --surface: #FFFFFF;
    --text: #2C2220;
    --text-soft: #524641;
    --text-muted: #6B5B54;
    --border: #E5E5E5;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-arabic: 'Cairo', 'Tajawal', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

html[dir="rtl"] body { font-family: var(--font-arabic); }
html[dir="rtl"] h1 { font-family: var(--font-arabic); }

.lang-en { display: inline; }
.lang-ar { display: none; }
html[dir="rtl"] .lang-en { display: none; }
html[dir="rtl"] .lang-ar { display: inline; }

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: linear-gradient(90deg, var(--brand), var(--gold), var(--brand));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
}

html[dir="rtl"] .logo { font-family: var(--font-arabic); }

@keyframes gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.lang-toggle {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    padding: 8px 16px;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-toggle:hover {
    background: var(--surface);
    border-color: var(--brand);
    color: var(--brand);
}

/* Hero */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(116, 15, 53, 0.2) 0%, transparent 70%);
    top: -10%;
    left: -5%;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 163, 106, 0.15) 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 400;
    margin-bottom: 24px;
}

html[dir="rtl"] .hero-title { font-family: var(--font-arabic); font-weight: 500; }

.title-accent {
    background: linear-gradient(135deg, var(--brand), var(--gold), var(--brand));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-soft);
    margin-bottom: 48px;
}

/* Contact Links */
.contact-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 24px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.contact-link:hover {
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-link svg { color: var(--text-soft); }
.contact-link:hover svg { color: var(--brand); }

.location {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* Footer */
.footer {
    padding: 32px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-soft);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--surface);
    color: var(--brand);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: linear-gradient(90deg, var(--brand), var(--gold), var(--brand));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
}

html[dir="rtl"] .footer-logo { font-family: var(--font-arabic); }

.footer-copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 640px) {
    .contact-links { flex-direction: column; align-items: center; }
    .contact-link { width: 100%; max-width: 280px; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
}
