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

:root {
    --brand-primary: #10b981;
    --brand-primary-dark: #059669;
    --brand-secondary: #fbbf24;
    --brand-accent: #0ea5e9;
    --brand-danger: #f43f5e;
    --bg-light: #fefce8;
    --text-main: #064e3b;
    --text-muted: #374151;
    --card-bg: rgba(255, 255, 255, 0.8);
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Glassmorphism Navbar */
.navbar-modern {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(16, 185, 129, 0.1);
    padding: 1rem 0;
}

.navbar-modern .navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--brand-primary) !important;
    font-size: 1.5rem;
}

/* Rounded Cards */
.card-modern {
    background: var(--card-bg);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

.card-modern .card-img-top {
    border-bottom: 4px solid var(--brand-primary);
    height: 200px;
    object-fit: cover;
}

/* Bubbly Buttons */
.btn-modern {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-modern {
    background-color: var(--brand-primary);
    color: white;
}

.btn-primary-modern:hover {
    background-color: var(--brand-primary-dark);
    transform: scale(1.05);
    color: white;
}

/* Hero Section */
.hero-modern {
    padding: 120px 0 80px;
    background: radial-gradient(circle at top left, #d1fae5, #fefce8);
    position: relative;
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--brand-secondary);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(40px);
}

.hero-title {
    font-size: 4rem;
    color: var(--brand-primary-dark);
    margin-bottom: 1.5rem;
}

/* Mascot Animation */
.mascot-container img {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Arabic Text Optimization */
.arabic-modern {
    font-family: 'Scheherazade New', serif;
    font-size: 2.2rem;
    color: var(--brand-primary-dark);
    direction: rtl;
    line-height: 1.8;
}