body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
}
.navbar {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}
.hero {
    height: 70vh;
    background: url('../no-index-photos/grass.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}
.tribute-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}
.featured-photos {
    padding: 80px 0;
}
.card {
    border: 1px solid #444;
    background-color: #222;
}
.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.card .grumpy-img {
    object-position: 50% 20%;
}
.bg-dark-section {
    background-color: #0d1117;
    border-top: 1px solid #30363d;
    border-bottom: 1px solid #30363d;
}
footer {
    background-color: #0d1117;
    padding: 40px 0;
    border-top: 1px solid #30363d;
}
.photo-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}
.photo-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo-modal-content {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}
.photo-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}
.photo-modal-close:hover {
    color: #ccc;
}
.photo-modal-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #f1f1f1;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
    max-width: 80%;
}
@keyframes fadeIn {
    from { opacity: 0; } 
    to { opacity: 1; }
}
@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; } 
    to { transform: scale(1); opacity: 1; }
}