/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    background-color: #EADBC8;
}

/* TITLE BANNER */
.title-banner {
    width: 100%; /* full width */
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FEFFA5;
    overflow: hidden;
}

.title-banner h1 {
    position: relative;
    z-index: 2;
    font-family: 'Pacifico', cursive;
    font-size: 3.5rem;
    color: #3A6EA5;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    text-align: center;
}

/* Animate bubbles in banner */
@keyframes riseBubbles {
    0% { background-position: center bottom; }
    100% { background-position: center top; }
}

/* WRAP MENU + PANELS */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px; /* bigger sand on left/right sides */
}

/* MENU BAR */
.top-menu {
    display: flex;
    justify-content: center;
    gap: 40px;
    background: #AFF0FD;
    border: 2px solid #FFC2E1; /* pink borders same thickness */
    padding: 10px 0;            /* vertical padding only */
    max-width: 100%;            /* full width of container */
    margin: 0 auto;
    position: relative;
}

.top-menu img {
    width: 60px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.top-menu img:hover {
    transform: scale(1.1);
}

.top-menu .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #3A6EA5;
    font-size: 0.9rem;
}

.top-menu .menu-item span {
    margin-top: 5px;
    display: block;
}

/* MAIN LAYOUT */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 0px;        /* space between panels */
    padding: 0;       /* panels touch menu vertically */
    margin: 0;        /* no extra top margin */
}

/* PANELS */
.side,
.center {
    padding: 20px 40px;   /* internal padding for content */
    background: #AFF0FD;
    border: 2px solid #FFC2E1; /* pink border same thickness */
    margin: 0;             /* remove negative margins */
}

.side h3,
.center h2 {
    margin-bottom: 15px;
    color: #3A6EA5;
}

.side p,
.center p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.side ul {
    list-style: none;
}

.side li {
    margin-bottom: 8px;
}

.side a {
    text-decoration: none;
    color: #2f6f8f;
}

.side a:hover {
    text-decoration: underline;
}

/* IMAGE BUTTON */
.image-button {
    text-align: center;
    margin: 20px 0;
}

.image-button img {
    width: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.image-button img:hover {
    transform: scale(1.05);
}

/* FOOTER */
.footer {
    font-family: 'Pacifico', cursive;
    background: #EADBC8;
    text-align: center;
    padding: 10px;
    color: #3A6EA5;
}