/* تنسيقات عامة */
body {
    font-family: 'Tajawal', sans-serif;
    background-color: #f7f3f0;
    margin: 0;
    padding: 0;
    text-align: center;
}

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

/* قسم الهيدر */
.hero-section {
    position: relative;
    height: 70vh;
    background-image: url('../images/camel-hero.png'); /* استبدل بصورتك */
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-section .content {
    position: relative;
    z-index: 1;
}

.hero-section .logo {
    font-size: 3em;
    font-weight: bold;
    color: #e6b31e;
}

.hero-section .slogan {
    font-size: 1.2em;
    margin-top: 10px;
}

.download-buttons a {
    display: inline-block;
    background-color: #e6b31e;
    color: white;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.download-buttons a:hover {
    background-color: #d1a01c;
}

/* قسم سوق الإبل */
.camel-market-section {
    padding: 50px 20px;
}

.camel-market-section h2 {
    font-size: 2.5em;
    color: #9c2a29;
    margin-bottom: 40px;
}

.camel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.camel-card {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.camel-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.camel-card h3 {
    color: #333;
}

.camel-card a {
    display: block;
    color: #e6b31e;
    text-decoration: none;
    font-weight: bold;
}

/* قسم شروط المختبر */
.lab-section {
    background-color: #9c2a29;
    color: white;
    padding: 50px 20px;
}

.lab-section .lab-btn {
    background-color: #e6b31e;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* القسم السفلي */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
}

.footer-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}