/* HudHud Elegant Landing Theme */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap');

:root {
    --hud-primary: #7EC638;
    --hud-primary-dark: #65a32b;
    --hud-secondary: #111111;
    --hud-text: #374151;
    --hud-text-light: #6B7280;
    --hud-bg: #FFFFFF;
    --hud-bg-alt: #F9FAFB;
    --hud-radius: 16px;
    --hud-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Tajawal', sans-serif !important;
    color: var(--hud-text);
    background-color: var(--hud-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--hud-secondary);
    font-weight: 700;
}

a {
    text-decoration: none !important;
    transition: all 0.3s ease;
}

/* Navbar */
.hud-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.hud-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hud-logo {
    height: 50px;
}

.hud-nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hud-nav-links a {
    color: var(--hud-secondary);
    font-weight: 500;
    font-size: 16px;
}

.hud-nav-links a:hover, .hud-nav-links a.active {
    color: var(--hud-primary);
}

.hud-btn {
    background: var(--hud-primary);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    border: 2px solid var(--hud-primary);
}

.hud-btn:hover {
    background: transparent;
    color: var(--hud-primary) !important;
}

.hud-btn.outline {
    background: transparent;
    color: var(--hud-primary) !important;
}

.hud-btn.outline:hover {
    background: var(--hud-primary);
    color: #fff !important;
}

/* Hero Section */
.hud-hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: radial-gradient(circle at top right, rgba(126, 198, 56, 0.08), transparent 40%);
    position: relative;
    overflow: hidden;
}

.hud-hero-content {
    max-width: 600px;
}

.hud-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hud-hero p {
    font-size: 1.2rem;
    color: var(--hud-text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hud-app-buttons {
    display: flex;
    gap: 15px;
}

.hud-app-buttons img {
    height: 50px;
    transition: transform 0.2s;
}

.hud-app-buttons img:hover {
    transform: translateY(-3px);
}

.hud-hero-img-container {
    position: relative;
    text-align: center;
}

.hud-hero-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    animation: hud-float 6s ease-in-out infinite;
}

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

/* Features Section */
.hud-features {
    padding: 100px 0;
    background: var(--hud-bg-alt);
}

.hud-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.hud-section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.hud-section-header p {
    color: var(--hud-text-light);
    font-size: 1.1rem;
}

.hud-feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--hud-radius);
    box-shadow: var(--hud-shadow);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

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

.hud-feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(126, 198, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.hud-feature-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.hud-feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.hud-feature-card p {
    color: var(--hud-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* App Download CTA */
.hud-cta {
    padding: 100px 0;
    background: var(--hud-secondary);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hud-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hud-cta h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 24px;
}

.hud-cta p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

/* Footer */
.hud-footer {
    background: #000;
    color: #fff;
    padding: 80px 0 30px;
    font-size: 0.9rem;
}

.hud-footer-logo {
    margin-bottom: 24px;
    display: block;
}

.hud-footer-logo img {
    height: 40px;
}

.hud-footer-links {
    list-style: none;
    padding: 0;
}

.hud-footer-links li {
    margin-bottom: 12px;
}

.hud-footer-links a {
    color: rgba(255,255,255,0.6);
}

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

.hud-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 991px) {
    .hud-hero {
        text-align: center;
        padding-top: 120px;
    }
    .hud-hero-content {
        margin: 0 auto 60px;
    }
    .hud-app-buttons {
        justify-content: center;
    }
    .hud-nav-links {
        display: none; 
    }
}
