/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align items to the top */
    min-height: 100vh; /* Ensure the body takes full height */
    padding: 20px;
}

.container {
    max-width: 1200px;
    width: 100%;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    margin-top: 50px; /* Increased margin to create space for the title */
}

h1 {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    color: #333;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 1;
}

h1:hover {
    color: #ff6347; /* Tomato red on hover */
}

/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

.gallery-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #eee;
}

.gallery-item-info {
    padding: 20px;
    text-align: center;
}

.gallery-item-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff6347;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin-top: 20px; /* Less margin on smaller screens */
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}
