/* Egypt Bikya Branding – Core Variables */
:root {
    --color-primary: #007BFF;           /* Nile Blue */
    --color-primary-dark: #0056b3;
    --color-secondary: #F5F5DC;         /* Sand Beige */
    --color-accent: #FFD700;            /* Gold – premium */
    --color-text-dark: #1F2937;
    --color-text-light: #F3F4F6;
    --color-bg-light: #F9FAFB;
    --color-bg-dark: #111827;
}

/* Font Family – Arabic priority */
body {
    font-family: 'Noto Sans Arabic', 'Roboto', system-ui, -apple-system, sans-serif;
    background-color: var(--color-bg-light);
}

/* Dark mode adjustments */
.dark body {
    background-color: var(--color-bg-dark);
}

/* Buttons */
.btn-primary {
    background-color: var(--color-primary);
    color: white;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.2s ease;
}
.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Cards */
.card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.dark .card {
    background-color: #1F2937;
}

/* Image Containers */
.image-container {
    position: relative;
    overflow: hidden;
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.image-container:hover img {
    transform: scale(1.08);
}

/* Badges */
.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Hero */
.hero {
    background: linear-gradient(to right, var(--color-primary), #4f46e5);
    color: white;
    padding: 6rem 1rem;
    text-align: center;
}

html {
    scroll-behavior: smooth;
}