/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #dda8bd;
    color: #333;
}

/* Header */
header {
    background-color: #fff;
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
}

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;
    margin: 10px 0 0 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

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

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

/* Product Detail Section */
.product-detail {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.product-detail h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #222;
}

.product-detail p {
    font-size: 18px;
    color: #666;
    margin: 10px 0;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    display: grid;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gallery-item img {
    width: 100%;
    height: 500px; /* fixed height for uniformity */
    object-fit: cover;
    border-radius: 8px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: #f4f4f4;
    color: #555;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 14px;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        justify-items: center; /* center items in each column */
    }
    /* Force gallery items to a fixed width */
    .gallery-item {
        width: 300px;
    }
    .gallery-item img {
        width: 300px;
        height: 500px;
    }
}