/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

/* Navbar */


/* Navbar الأساسي */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fffefe;
    color: #e65c00;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin-bottom: 0px;
}

.nav-links li a {
    color: #e65c00;
    text-decoration: none;
    font-size: 16px;
}

.menu-icon {
    font-size: 26px;
    cursor: pointer;
    display: none;
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #f5f1f1;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 10px 0;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 75vh;
    background: url('premium_photo-1681488262364-8aeb1b6aac56.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-text h2 {
    font-size: 44px;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero-btn {
    background-color: #fc8e45;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.hero-btn:hover {
    background-color: #ff6600;
}


.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.product-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

.product-card h4 {
    margin: 10px 0 5px;
    font-size: 18px;
}

.product-card p {
    font-size: 16px;
    color: #666;
}

/* Features */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 50px 20px;
    background-color: #f1f1f1;
}

.feature-box {
    width: 300px;
    text-align: center;
    margin: 15px 0;
}

.feature-box i {
    font-size: 40px;
    color: #ff6600;
    margin-bottom: 15px;
}

.feature-box h3 {
    margin-bottom: 10px;
}

/* Footer */
.main-footer {
    background-color: #222;
    color: #fff;
    padding: 40px 20px 10px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-col {
    flex: 1 1 200px;
    margin: 10px 20px;
}

.footer-logo {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 5px 0;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.social-icons a {
    font-size: 20px;
    margin-right: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons i {
    font-size: 30px;
    margin: 15px;
}

.facebook {
    color: #1877f2;
}

.instagram {
    color: #e1306c;
}

.twitter {
    color: #1da1f2;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
    border-top: 1px solid #444;
}

@media screen and (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        margin: 20px 0;
    }
}