/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
}

.header {
    background-color: #3b5998;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.header p {
    font-size: 1.2rem;
}

.main-content {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about, .gallery, .tributes, .contact {
    margin-bottom: 2rem;
}

.about h2, .gallery h2, .tributes h2, .contact h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #3b5998;
    padding-bottom: 0.5rem;
}

.profile-photo {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.photo-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.tributes blockquote {
    font-size: 1.1rem;
    color: #555;
    border-left: 4px solid #3b5998;
    margin: 1rem 0;
    padding-left: 1rem;
    font-style: italic;
    background: #f4f4f4;
    border-radius: 4px;
}

.tribute-form {
    margin-top: 2rem;
    padding: 1rem;
    background: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tribute-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.tribute-form input, .tribute-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.tribute-form button {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    color: #fff;
    background-color: #3b5998;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.tribute-form button:hover {
    background-color: #2c4373;
}

.contact a {
    color: #3b5998;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #3b5998;
    color: #fff;
    font-size: 0.9rem;
}
