body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

header h1 {
    float: left;
    margin: 0;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header nav {
    float: right;
    margin-top: 5px;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav li {
    display: inline;
    margin-left: 20px;
}

header nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 14px;
}

.hero {
    background: #f4f4f4;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.gallery {
    padding: 50px 0;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.image-item {
    text-align: center;
}

.image-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.image-item p {
    margin-top: 10px;
    font-style: italic;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

/* Memorial Page Styles */
.memorial-page {
    background-color: #fdfaf7;
    font-family: 'Lato', sans-serif;
}

.memorial-page h2, .memorial-page h3 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #5d4037;
}

.memorial-hero {
    position: relative;
    padding: 80px 0;
    background: #fff;
    text-align: center;
    border-bottom: 1px double #d7ccc8;
}

.flower-decoration {
    position: absolute;
    font-size: 40px;
    opacity: 0.3;
}

.top-left { top: 20px; left: 20px; }
.top-right { top: 20px; right: 20px; }

.memorial-profile .profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #efebe9;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.dates {
    font-size: 1.2rem;
    color: #8d6e63;
    letter-spacing: 3px;
    margin-top: 10px;
}

.memorial-content {
    padding: 60px 0;
}

.tribute-text {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.8;
    color: #4e342e;
}

.flower-gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.flower-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.flower-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    filter: sepia(20%);
    transition: filter 0.3s;
}

.flower-item img:hover {
    filter: sepia(0%);
}

.flower-item p {
    margin-top: 15px;
    font-style: italic;
    color: #6d4c41;
}

@media (max-width: 768px) {
    header h1, header nav {
        float: none;
        text-align: center;
    }
    header nav {
        margin-top: 20px;
    }
    .image-grid {
        grid-template-columns: 1fr;
    }
    .hero h2 {
        font-size: 32px;
    }
}

.bungalow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    min-height: 60vh;
}
.bungalow-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
