/* Base Styles */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2c3e50;
}

/* Header */
header {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    text-align: center;
    padding: 60px 0;
}

header h1 {
    font-size: 3rem;
    margin: 0;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 60px 0;
}

.intro, .truth, .contact {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
    border-radius: 8px;
}

.memories {
    background-color: #f1f8fe;
}

.gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px 0;
}

.gallery img {
 /*   width: 30%;*/
    border-radius: 8px;
    margin: 10px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    background-color: #2c3e50;
    color: white;
}

footer p {
    margin: 0;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery img {
        width: 100%;
    }
}