


/* =========================
   GLOBAL STYLES (ENTIRE PAGE)
   ========================= */

/* Removes default browser spacing */
body {
    margin: 0;
    padding: 0;
}

/* Wrapper controls full page layout */
#wrapper {
    width: 100%;
}

/* =========================
   HEADER STYLING
   ========================= */

header {
    background-color: #A57CC1; /* purple top bar */
    display: flex; /* puts name + nav in a row */
    justify-content: space-between; /* pushes them apart */
    align-items: center; /* vertically centers */
    padding: 20px 40px;
}

/* Your name (top left) */
header h1 {
    color: #000000;
    font-family: 'Battambang', sans-serif;
    font-size: 45px;
    font-weight: bold;
}

/* Navigation container */
nav {
    display: flex;
    gap: 30px; /* space between links */
}

/* Navigation links */
nav a {
    color: #000000;
    font-family: 'Battambang', sans-serif;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none; /* removes underline */
}

/* Hover effect (when mouse is over link) */
nav a:hover {
    text-decoration: underline;
    color: white;
}
/* =========================
   MAIN BACKGROUND
   ========================= */

main {
    background-color: #D19AB3; /* pink background */
    padding: 50px;
}

/* =========================
   PAGE TITLE
   ========================= */

.page-title h2 {
    color: #FFFFFF;
    font-family: 'Battambang', sans-serif;
    font-size: 44px;
    font-weight: 700;
}

/* =========================
   GALLERY GRID
   ========================= */

.gallery {
    /* CSS GRID = perfect for galleries */
    display: grid;

    /* 3 columns like your design */
    grid-template-columns: repeat(3, 1fr);

    /* space between images */
    gap: 60px;

    /* spacing from title */
    margin-top: 50px;
}

/* EACH IMAGE CONTAINER */
.gallery-item {
    text-align: center;
}

/* IMAGE STYLING */
.gallery-item img {
    width: 100%;          /* fills container */
    max-width: 400px;     /* controls size */
    height: auto;         /* keeps proportions */

    /* optional: soft look */
    border-radius: 10px;
}

/* =========================
   FOOTER
   ========================= */

footer {
    background-color: #A57CC1;
    padding: 20px;
    text-align: center;
}

footer h4 {
    color: #000000;
    font-family: 'Battambang', sans-serif;
}


