/* Basic Reset and Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9; /* Light background */
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #8c0044; /* Deep Berry/Maroon for headings */
}

.container {
    width: 80%;
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header and Navigation */
header {
    background-color: #8c0044;
    color: white;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    color: #fff;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    padding: 5px 10px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #a33267; /* Lighter shade on hover */
    border-radius: 4px;
}

/* Products Section */
#products h2 {
    text-align: center;
    margin-bottom: 30px;
}

.fabric-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.fabric-item {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.fabric-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.fabric-item h3 {
    color: #c9407a; /* Pinkish-Red accent */
    margin-top: 0;
}

.price {
    font-weight: bold;
    color: #5aa700; /* Green for price */
    font-size: 1.1em;
    margin-top: 10px;
}

/* Location Section */
#location {
    text-align: center;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-style: italic;
}

/* Order Form Section */
.order-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.order-form label {
    font-weight: bold;
    margin-top: 10px;
}

.order-form input[type="text"],
.order-form input[type="email"],
.order-form input[type="number"],
.order-form select,
.order-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't expand the element */
}

.order-form textarea {
    resize: vertical;
    height: 100px;
}

.order-form button {
    background-color: #8c0044;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.order-form button:hover {
    background-color: #6a0033;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: white;
    margin-top: 40px;
}