
/* استيراد خط أنيق */
@import url('img-background/bacgrounde-img-flower-1.jpg');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
}
html{
    scroll-behavior: smooth;
}

body {
    background-color: #F8F5F2;
}
header {
    background: #f8f1eb;
    padding: 22px 15px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a {
    text-decoration: none;
    font-size: 24px;
    color: #8b6f66;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
}

nav ul li a {
    text-decoration: none;
    color: #4a3c39;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #a87c6f;
}

.hero {
    height: 100vh;  /* لتجنب تداخل مع الهيدر الثابت */
    background: url('img-background/bacgrounde-img-flower-2.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.overlay {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 10px;
    color: white;
    max-width: 600px;
    margin: 0 20px;
    text-align: center;
}

.hero .content p {
    font-size: 18px;
    margin-bottom: 10px;
}

.hero .content h2 {
    font-size: 36px;
    font-weight: bold;
}

.shop-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #f8d1c9;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.shop-btn:hover {
    background: #e8b4a8;
}

.shop-section {
    padding: 50px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0;
    text-align: center;
}

.shop-title {
    font-size: 32px;
    color: #4D4737;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); /* تأثير الظل */
}

.shop-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); /* تأثير الظل */
}

.shop-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.shop-item {
    background-color: #627254;
    color: #fff;
    width: 320px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.shop-item:hover {
    transform: scale(1.05);
}

.shop-item img {
    width: 100%;
    border-radius: 10px;
    height: 220px;
    object-fit: cover;
}

.shop-item h3 {
    margin: 15px 0;
    font-size: 20px;
}

.shop-item p {
    font-size: 14px;
    margin-bottom: 15px;
}

.shop-button {
    text-decoration: none;
    background-color: #EED8C2;
    color: #4D4737;
    padding: 10px 15px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
}
.shop-button:hover {
    background-color: #C8A991;
}

/* التصميم المتجاوب */
@media (max-width: 768px) {
    header h1 {
        font-size: 20px;
    }

    .hero .content h2 {
        font-size: 28px;
    }

    .hero .content p {
        font-size: 16px;
    }

    .shop-btn {
        padding: 8px 16px;
    }

    .shop-container {
        flex-direction: column;
        align-items: center;
    }

    .shop-item {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .overlay {
        padding: 20px;
    }

    .hero .content h2 {
        font-size: 24px;
    }

    .hero .content p {
        font-size: 14px;
    }

    .shop-btn {
        padding: 6px 12px;
    }
}


/*card product*/

