/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&display=swap');

:root {
    --primary-color: #1B5E20;
    /* Dark Green */
    --secondary-color: #FFD700;
    /* Gold */
    --accent-color: #B71C1C;
    /* Deep Red */
    --light-bg: #F9F9F9;
    --text-color: #333;
}

body {
    font-family: 'Noto Kufi Arabic', sans-serif;
    color: var(--text-color);
    background-color: var(--light-bg);
    direction: rtl;
    text-align: right;
}

/* Global Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Navbar */
.navbar {
    background-color: var(--primary-color) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar-brand,
.nav-link {
    color: white !important;
    font-weight: 600;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Responsive Logo */
.navbar-brand img {
    height: 90px;
    width: auto;
    transition: all 0.3s ease;
    object-fit: contain;
    /* Ensures aspect ratio is kept */

    /* Oval/Soft Edge Effect */
    border-radius: 50%;
    /* Make it simple oval/circle */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    /* Light soft glow */
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle bg to help shape */
    padding: 3px;
}

@media (max-width: 991px) {
    .navbar-brand img {
        height: 60px;
    }
}

/* Hero Section */
.hero-slider .carousel-item {
    height: 60vh;
    background-color: #333;
}

.hero-slider img {
    object-fit: cover;
    height: 100%;
    opacity: 0.8;
}

.carousel-caption {
    background: rgba(27, 94, 32, 0.7);
    border-radius: 10px;
    padding: 20px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #144a18;
    border-color: #144a18;
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #000;
}

.btn-secondary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

/* Section Titles */
.section-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: 0;
    right: 0;
}

/* Cards (Products) */
.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    background: white;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    /* Ensure full width */
}

.card-body {
    text-align: center;
}

.price-tag {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 0;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    color: white;
}

.footer-bottom {
    background-color: black;
    padding: 15px 0;
    margin-top: 30px;
    font-size: 0.9rem;
}