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

:root {
    --primary-color: #2c3e50;
    --accent-color: #4CAF50;
    --text-color: #333;
    --bg-color: #f9f9f9;
}

body {
    font-family: 'Tajawal', sans-serif;
    margin: 0;
    padding: 0;
    direction: ltr; /* Default LTR */
    background-color: var(--bg-color);
    color: var(--text-color);
}

body.lang-ar {
    direction: rtl;
    text-align: right;
}

body.lang-en {
    direction: ltr;
    text-align: left;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../medias/hero_bg.7212a70c15f6.png");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 20px 180px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.search-container {
    background: white;
    border-radius: 50px;
    padding: 10px;
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0.9;
    cursor: not-allowed;
    position: relative;
}

.search-input {
    flex-grow: 1;
    border: none;
    padding: 12px 20px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1.1rem;
    outline: none;
    text-align: inherit; /* Inherit from body/parent */
    background: transparent;
    pointer-events: none;
    color: #555;
}

.search-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 40px;
    cursor: not-allowed;
    font-family: 'Tajawal', sans-serif;
    font-weight: bold;
    font-size: 1rem;
}

.widget-wrapper {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: -100px auto 0px;
    position: relative;
    z-index: 10;
}

/* Minimal header/nav */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    color: white;
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .top-nav {
        padding: 15px 20px;
    }
    .nav-links {
        display: none; /* Hide on mobile for simplicity */
    }
}
