/* --- Body general style --- */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 40px 20px; /* space around the edges */
}

/* --- Title section --- */
header h1 {
    text-align: center;   /* horizontally centered title */
    font-size: 3em;       /* big title */
    font-weight: bold;    /* bold text */
    color: #2c3e50;
    margin-bottom: 30px;  /* space below the title */
}

/* --- Content section --- */
.byline {
    text-align: center;
    font-style: italic;
    font-weight: 400;
    color: #555;
}

.content {
    text-align: left;      /* all other text aligned left */
    max-width: 900px;      /* limit width for readability */
    margin: 0 auto;        /* center content block on page */
}

.content p {
    font-size: 1em;
    color: #333;
    margin: 10px 0;
}

/* --- Section headings --- */
.section-title {
    font-weight: bold;
    font-size: 1.3em;
    margin-top: 25px;
    color: #34495e;
}

/* --- Image gallery --- */
.image-gallery {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.image-gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}
.image-gallery img {
    width: 100%;
    max-width: 1500px;
    margin: 20px auto;
    display: block;
    border-radius: 8px;
}
/* ====== TEXT SPACING & READABILITY ====== */
p {
    line-height: 1.8;         /* spacing within each paragraph */
    margin-bottom: 15px;      /* space between each paragraph */
}

/* makes section titles stand out (About Me, 23 Nights in Cubes) */
.section-title {
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 30px;         /* space above section title */
    margin-bottom: 10px;      /* space below section title */
}

/* optional: add some padding around the page */
body {
    padding: 40px;
}