:root {
    --primary-green: #1a4d2e;
    --dark-green: #143d23;
    --primary-gold: #d4af37;
    --light-gold: #f4eeb1;
    --dark-gold: #b4932a;
    --white: #ffffff;
    --dark-text: #333333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--dark-text);
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Buttons */
.btn-gold {
    background-color: var(--primary-gold);
    color: var(--white);
    border: 2px solid var(--primary-gold);
    padding: 10px 25px;
    font-weight: 700;
    border-radius: 30px;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--primary-gold);
}

.btn-green {
    background-color: var(--primary-green);
    color: var(--white);
    border: 2px solid var(--primary-green);
    padding: 10px 25px;
    font-weight: 700;
    border-radius: 30px;
}

.btn-green:hover {
    background-color: transparent;
    color: var(--primary-green);
}

/* Header */
.top-bar {
    background-color: var(--primary-green);
    color: var(--light-gold);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar a {
    color: var(--light-gold);
}

.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand img {
    height: 50px;
}

.navbar-brand span {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 10px;
}

.nav-link {
    color: var(--dark-green) !important;
    font-weight: 600;
    margin: 0 10px;
    font-size: 1.1rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-gold) !important;
}

/* Slider */
.carousel-item {
    height: 600px;
    background-color: #333;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    opacity: 0.6;
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}

.carousel-caption p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Section Headings */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 10px auto 0;
}

/* Features/About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-img {
    border-radius: 10px;
    box-shadow: 10px 10px 0 var(--primary-gold);
    overflow: hidden;
}

.about-img img {
    width: 100%;
    transition: transform 0.5s;
}

.about-img:hover img {
    transform: scale(1.05);
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: #f4f6f9;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    margin-bottom: 30px;
    border: none;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-body {
    padding: 20px;
    text-align: center;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-green);
}

.product-price {
    color: var(--primary-gold);
    font-weight: 800;
    font-size: 1.1rem;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background-color: var(--white);
}

.news-card {
    border: none;
    margin-bottom: 30px;
}

.news-img {
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    margin-bottom: 15px;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.news-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.news-title a {
    color: var(--dark-green);
}
.news-title a:hover {
    color: var(--primary-gold);
}

/* Footer */
footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 60px 0 20px;
}

footer h4 {
    color: var(--primary-gold);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

footer p, footer a {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

footer a:hover {
    color: var(--primary-gold);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}
