/* Global Styles (header, footer, etc.) */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #dda8bd;
}

header {
    background-color: #fafafa;
    padding: 20px 0;
    border-bottom: 2px solid #e1e1e1;
}

header .logo h1 {
    font-size: 36px;
    text-align: center;
    color: #333;
    margin: 0;
    font-weight: 700;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #555;
}

nav ul li a:hover {
    color: #a87b8d;
}

/* Hero Section */
.hero {
    background: hsl(337, 55%, 76%);
    text-align: center;
    padding: 50px 20px;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.shop-now-btn {
    margin-top: 30px; /* Add space above the Shop Now button */
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #a87b8d;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  .shop-now-btn:hover {
    background-color: #8a5f6d;
  }
  
  /* Add space below the View Details button */
  .view-details-btn {
    margin-bottom: 20px; /* Add space below View Details button */
  }

/* Products Section */
.products {
    padding: 40px 20px;
    text-align: center;
    
}

.products h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.product-card {
    width: 250px;
    background-color: white;
    border: 1px solid #a87b8d;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.product-card h3 {
    font-size: 20px;
    color: #333;
    margin: 15px 0;
}

.product-card p {
    font-size: 16px;
    color: #777;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.view-details-btn {
    text-decoration: none;
    color: #a87b8d;
    font-weight: bold;
    transition: color 0.3s;
}

.view-details-btn:hover {
    color: #8a5f6d;
}

/* Footer */
footer {
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
/*costum dresses*/
.custom-design {
    padding: 60px 20px;
    background-color:hsl(337, 55%, 76%);
    text-align: center;
}
.custom-design h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}
.custom-design p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.material-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.material-card {
    width: 150px;
    text-align: center;
}
.material-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.material-card p {
    margin-top: 10px;
    font-size: 14px;
    color: #444;
}

.about-btn {
    margin-top: 20px; /* Add space above the Shop Now button */
    margin-bottom: 20px;
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #a87b8d;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  .about-btn:hover {
    background-color: #8a5f6d;
  }
  



.featured-products {
    padding: 60px 20px;
    background-color: #dda8bd;
    text-align: center;
}
.featured-products h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}
.featured-products p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .hero h2 {
        font-size: 28px;
    }

    .product-list {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 90%;
    }

    .shop-now-btn {
        padding: 12px 25px;
    }
}