body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: white;
}

/* NAVBAR */
/* HEADER LAYOUT */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* LEFT SIDE (LOGO) */
.sub-header {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    padding-left: 20%; /* 👈 pushes logo inward (~1/4 feel visually) */
}

.sub-header img {
    width: 550px;
    max-width: 100%;
    height: auto;
    cursor: pointer;
}

/* RIGHT SIDE (NAV) */
nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    padding-right: 20%; /* 👈 symmetric spacing */
}

/* NAV LINKS */
nav a {
    font-size: 1.4rem;           /* bigger text */
    text-decoration: none;
    color: #222;
    font-weight: 600;
    letter-spacing: 1px;
}

/* GALLERY */
.gallery {
    column-count: 3;
    column-gap: 10px;
    padding: 20px;
}

.gallery img {
    width: 100%;
    margin-bottom: 10px;
    display: block;
}

/* CONTENT PAGES */
.content {
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
}
/* LIGHTBOX */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
}

/* PLAYFUL FONT STYLE */
body {
    font-family: "Trebuchet MS", "Comic Sans MS", cursive, sans-serif;
}

/* Optional hover for personality */
nav a:hover {
    opacity: 0.6;
}
