/* Import Google Fonts - Arabic */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #6F9D78;
    --primary-orange: #FF9800;
    --light-orange: #FFB74D;
    --light-green: #81C784;
    --dark-gray: #6F9D78;
    --light-gray: #f5f5f5;
    --white: #fff;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
    direction: rtl;
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
header {
    padding: 15px 0;
    background-color: var(--white);
}

.header-content {
    display: flex;
    flex-direction: row-reverse; /* This will put the first element on the right */
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 100px;
}

.order-now {
    display: flex;
    align-items: center;
}

.order-btn {
    background-color: transparent;
    border: 1px solid #6F9D78;
    color: #6F9D78;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Tajawal', sans-serif;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.order-btn:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

/* Hero Section */
.hero {
    padding: 0;
    margin: 0;
    width: 100%;
}

.banner-link {
    display: block;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.banner-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
}

.banner-link:hover::after {
    background-color: rgba(0, 0, 0, 0.1);
}

.banner-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (min-width: 992px) {
    .hero {
        display: flex;
        justify-content: center;
    }

    .banner-link {
        max-width: 1200px;
        margin: 0 auto;
    }

    .banner-container {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        margin: 20px;
    }

    .banner-img {
        height: 500px;
        object-fit: cover;
    }
}

/* Contact Section */
.contact-section {
    padding: 20px 0;
    background-color: #fff;
    text-align: center;
}

.contact-us-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #6F9D78;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-us-button:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.contact-us-button i {
    font-size: 22px;
}

/* Features Section */
.features {
    background-color: #FFF8E1;
    padding: 30px 0;
    text-align: center;
}

.section-title {
    font-size: 25px;
    margin-bottom: 5px;
    color: #6F9D78;
    font-weight: 600;
}

.section-subtitle {
    color: #6F9D78;
    margin-bottom: 25px;
    font-size: 25px;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    text-align: right;
}

.feature-item {
    padding: 10px 15px;
    background-color: #fff;
    border-radius: 10px;
    width: 48%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feature-item h3 {
    color: #6F9D78;
    margin-bottom: 5px;
    font-size: 25px;
    font-weight: 600;
}

.feature-item p {
    color: #6F9D78;
    font-size: 14px;
}

.feature-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-right: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    text-align: right;
}

.feature-list li:before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.feature-list li.orange-dot:before {
    background-color: var(--primary-orange);
}

.feature-list li.yellow-dot:before {
    background-color: #FFC107;
}

.feature-list li.green-dot:before {
    background-color: var(--primary-green);
}

.promo-banner {
    background-color: transparent;
    padding: 10px;
    margin: 20px 0 0;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.promo-banner p {
    font-size: 25px;
    color: #E36E3F;
    margin: 10px 0;
}

/* Fullscreen Photo Section */
.fullscreen-photo {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.fullscreen-link {
    display: block;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.fullscreen-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
}

.fullscreen-link:hover::after {
    background-color: rgba(0, 0, 0, 0.1);
}

.photo-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fullscreen-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

@media (min-width: 992px) {
    .fullscreen-photo {
        display: flex;
        justify-content: center;
    }

    .fullscreen-link {
        max-width: 1200px;
        margin: 0 auto;
    }

    .photo-container {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        margin: 20px;
    }

    .fullscreen-img {
        height: 500px;
        object-fit: cover;
    }
}

/* Products Grid */
.products-grid {
    padding: 30px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (min-width: 768px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

.product-item {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 180px;
}

.product-item img {
    max-height: 150px;
    object-fit: contain;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    margin-top: 30px;
    text-align: center;
    background-color: #f8f9fa;
    padding: 20px 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
    border-top: 3px solid #6F9D78;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.footer-title {
    margin-bottom: 15px;
    padding-bottom: 10px;
    width: 100%;
}

.footer-title p {
    color: #6F9D78;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.footer-whatsapp {
    width: 100%;
    margin-bottom: 15px;
     font-size: 20px;
    font-weight: 700;
    padding-bottom: 15px;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6F9D78;
    text-decoration: none;
    font-size: 16px;
}

.whatsapp-link i {
    color: white;
    background-color: #6F9D78;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
}

.social-icon.x-icon {
    background-color: #f7764d;
    color: var(--white);
}

.social-icon.x-icon i {
    font-weight: bold;
    font-size: 14px;
}

.social-icon.instagram {
    background-color: #F9A825;
    color: var(--white);
}

.social-icon.whatsapp {
    background-color: #6F9D78;
    color: var(--white);
}

.footer-location {
    width: 100%;
}

.footer-location p {
    font-size: 14px;
    color: #a0a0a0;
    margin: 0;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-whatsapp i {
    font-size: 30px;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .floating-whatsapp {
        bottom: 30px;
        right: 30px;
        width: 70px;
        height: 70px;
    }

    .floating-whatsapp i {
        font-size: 35px;
    }
}
