body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
    color: #333;
}

header {
    background-color: black;
    color: black;
    padding: 10px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
}

header img {
    width: 100px;
    height: auto;
}

header h1, header p {
    margin: 0;
    text-align: center;
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    color: #D4AF37;
    text-decoration: none;
    margin-left: 10px;
    font-size: 32px;
}

.container-products {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.main-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: black;
    margin-bottom: 40px;
}

#showcase {
    margin-top: 20px;
    text-align: center;
    background: url('saree-background.jpg') no-repeat center center/cover;
    color: black;
    /* height: 200px; */
    width: 100%;
    max-width: 1200px;
}

#showcase h1 {
    margin-top: 60px;
    font-size: 60px;
    line-height: 1.2;
    font-family: 'Amita', 'Alex Brush', sans-serif;
    color: #D4AF37;
}

#showcase p {
    font-size: 30px;
    font-family: 'Amita', 'Alex Brush', sans-serif;
    color: #D4AF37;
    margin-top: 10px;

}

#products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px auto;
    max-width: 1200px;
}

.product-item {
    background: #D4AF37;
    width: calc(33.333% - 20px);
    margin: 0;
    padding: 20px;
    border: 1px solid #D4AF37;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.product-item .image-container {
    width: 100%;
    height: 300px;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
}

.product-item h3 {
    margin-top: 10px;
    font-size: 18px;
    color: #8B0000;
}

.product-item p {
    font-size: 14px;
    color: #333;
}

footer {
    background-color: #D4AF37;
    color: black;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    font-family: 'Great Vibes', cursive;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: black;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

#contact-us {
    background-color: #D4AF37;
    padding: 20px;
    margin-top: 20px;
    border-top: 2px solid #D4AF37;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

#contact-us form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact-us h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
    text-align: center;
    color: #8B0000;
}

#contact-us input, #contact-us textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #D4AF37;
    border-radius: 5px;
}

#contact-us textarea {
    resize: vertical;
    height: 100px;
}

#contact-us button {
    padding: 10px 20px;
    background-color: #8B0000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#contact-us button:hover {
    background-color: #A52A2A;
}

#responseMessage {
    margin-top: 20px;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

#contact-us button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

@font-face {
    font-family: 'Amita';
    src: url('assets/Amita.ttf') format('truetype');
}

@font-face {
    font-family: 'Alex Brush';
    src: url('assets/Alex Brush.ttf') format('truetype');
}

h1 {
    font-family: 'Amita', 'Alex Brush', sans-serif;
}

@media (max-width: 992px) {
    .product-item {
        width: calc(50% - 15px);
    }
    
    .product-item .image-container {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .product-item {
        width: 100%;
        max-width: 400px;
    }
    
    .product-item .image-container {
        height: 400px;
    }
    
    .container-products {
        padding: 0 15px;
    }
}

header nav {
    margin: 0 20px;
    flex-grow: 1;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

header nav ul li a {
    color: #D4AF37;
    text-decoration: none;
    font-size: 1.2em;
    font-family: 'Amita', cursive;
    transition: color 0.3s ease;
    white-space: nowrap;
}

header nav ul li a:hover {
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 10px;
    }
    
    header nav {
        margin: 10px 0;
        width: 100%;
    }
    
    header nav ul {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    header nav ul li a {
        font-size: 1em;
    }
    
    .social-icons {
        margin-top: 10px;
    }
}

/* Add these styles for the about page */
.about-header {
    display: none;
}

.about-section h2 {
    font-family: 'Amita', 'Alex Brush', sans-serif;
    font-size: 40px;
    color: #D4AF37;
    margin-bottom: 30px;
}

.about-values h3 {
    font-family: 'Amita', 'Alex Brush', sans-serif;
    font-size: 35px;
    color: #D4AF37;
    margin: 30px 0;
}

.about-section p, 
.about-values p,
.about-section ul li,
.about-values ul li {
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #D4AF37;
}

.about-section ul,
.about-values ul {
    padding-left: 20px;
}

.about-section strong,
.about-values strong {
    color: #D4AF37;
    font-weight: bold;
}

@media (max-width: 768px) {
    .about-section h2 {
        font-size: 32px;
    }
    
    .about-values h3 {
        font-size: 28px;
    }
    
    .about-section p, 
    .about-values p,
    .about-section ul li,
    .about-values ul li {
        font-size: 16px;
    }
}

/* Update container spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
