.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
    overflow-y: auto;
}

.gallery-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(210,166,166,0.18);
}

.gallery-item img {
    max-width: 100%;
    max-height: 220px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: box-shadow 0.2s;
}
/* General Reset */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: Arial, sans-serif; /* Default font for the page */
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f4eae2;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f4eae2;
}

.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.center-image {
    width: 500px;
    height: 500px;
    object-fit: contain;
}

/* Contact Section */
.contact-section {
    padding: 20px;
    text-align: center;
    font-family: 'Arimo', sans-serif; /* Applying Arimo font */
    background-color: #f4eae2;
}

.contact-section h2 {
    margin-bottom: 15px;
}

.contact-section ul {
    display: inline-block;
    text-align: left;
}

.contact-section li {
    margin-bottom: 10px;
}

.contact-section a {
    color: #007BFF;
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

.social-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.gallery-preview {
    text-align: center;
    margin: 40px 0;
}

.gallery-link {
    display: inline-block;
    padding: 15px 30px;
    background-color: #d2a6a6;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s;
}

.gallery-link:hover {
    background-color: #c09595;
}

.preview-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.preview-container {
    width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
}

.preview-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.preview-container:hover img {
    transform: scale(1.05);
}

.featured-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    height: 100%;
}

.preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.preview-container:hover .preview-overlay {
    transform: translateY(0);
}

.preview-overlay h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
}

.preview-overlay p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background: #333;
    color: white;
    margin-top: auto;
}
