body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background: linear-gradient(to right, #f0f0f0, #e6e6e6);
    color: #333333;
    background: url('/pics/background.png') no-repeat center center fixed;
    background-size: cover;
}
header {
    background-color: #4b4b4b;
    color: white;
    padding: 1rem;
    text-align: center;
    animation: slideDown 1s ease-out;
}
nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    background: #e0e0e0;
    padding: 1rem;
}
nav a {
    text-decoration: none;
    color: #333333;
    font-weight: bold;
}
section {
    padding: 2rem;
}
.family-gallery img {
    width: 200px;
    margin: 10px;
    border-radius: 10px;
    transition: transform 0.3s;
}
.family-gallery img:hover {
    transform: scale(1.05);
}
footer {
    text-align: center;
    padding: 1rem;
    background-color: #4b4b4b;
    color: white;
}
@keyframes slideDown {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#lightbox img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px #fefefe;
}

#lightbox:target {
    display: flex;
}

#lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 3rem;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.content-section {
    box-sizing: border-box;
    text-align: left;
    overflow-x: hidden;
}

.content-section h1 {
    animation: fadeIn 2s ease-in;
}

.content-section h2 {
    display: inline;
    animation: fadeIn 2s ease-in;
}

.content-section h3 {
    display: inline;
    animation: fadeIn 2s ease-in;
}

.content-section h4 {
    display: inline;
    animation: fadeIn 2s ease-in;
}

.content-section h5 {
    display: inline;
    animation: fadeIn 2s ease-in;
}

.content-section h6 {
    display: inline;
    animation: fadeIn 2s ease-in;
}

.content-section p {
    display: inline;
    animation: slideIn 1.5s ease-out;
}

.content-section a {
    display: inline-block;
    text-decoration: none;
    color: #333333;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    margin: 0.2em 0.2em;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.content-section a:hover {
    color: #111111;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.content-section-noa {
    display: inline-block;
    font-size: 0rem;
    border-radius: 0px;
    text-decoration: none;
}

.trip-list {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    max-width: 800px;
    padding: 1em;
}

.trip {
    border-radius: 8px;
    padding: 1em 1.5em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.trip:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.trip h3 {
    margin-top: 0;
}

.trip p {
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 600px) {
    #lightbox img {
        max-width: 90vw;
        max-height: 80vh;
    }
}
