/* General Styling */
:root {
    --light-orange: #FFDAB9; /* Peach-puff like */
    --light-brown: #DEB887;  /* BurlyWood like */
    --dark-text: #a16e2c;
    --white-text: #f0f0f0;
}

body {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 0;
    box-sizing: border-box;
    color: var(--dark-text);
 background-color: var(--light-brown);
	 scroll-behavior: smooth;

}

h1 {
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 30px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: var(--light-orange);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.gallery-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: var(--light-brown);
    padding-bottom: 10px; /* Space for the button */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gallery-item img {
    max-width: 100%;
    height: 405px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures images cover the area without distortion */
    display: block;
    margin-bottom: 10px;
}

.download-btn {
    display: inline-block;
    background-color: var(--light-orange);
    color: var(--dark-text);
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: auto; /* Pushes the button to the bottom */
}

.download-btn:hover {
    background-color: var(--light-brown);
}