/* stylesheets/style.css */

/* Global UI Elements */
body {
    background-color: #FFFFFF; /* White background */
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

/* Make the logo significantly larger */
.site-logo {
    max-width: 350px; /* Increase or decrease this number to dial in the exact size */
    height: auto;     /* Ensures the image scales proportionally without stretching */
}

/* Breadcrumbs Styling */
.breadcrumbs {
    margin: 20px 0 20px 20px; /* 20px top, 0 right, 20px bottom, 20px left */
    font-size: 1.1em;
    text-align: left;
}

/* Navigation Bar */
nav {
    background-color: #f1f1f1;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Make navigation links all caps */
nav ul li a {
    text-transform: uppercase;
    font-weight: bold; /* Optional: Makes the uppercase letters punchier like a comic book font */
    letter-spacing: 1px; /* Optional: Adds a tiny bit of breathing room between uppercase letters */
}

/* Top Slideshow Container */
.slideshow-container {
    background-color: #3399FE; /* Blue background */
    padding: 20px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    max-width: 1200px;
    margin: 0 auto 50px auto; /* The '50px' adds a large margin strictly to the bottom of the slideshow */
    text-align: center;
}

/* Pagination Buttons (Next / Previous) */
.pagination {
    display: flex;
    justify-content: center; /* Centers the buttons on the page */
    gap: 20px;               /* Adds 20px of space between the two buttons */
    margin: 30px 0;          /* Adds 30px of space above and below the buttons */
}

/* Hide all slides by default so they don't stack; JavaScript will reveal them */
.slide {
    display: none; 
}

/* Responsive Comic Panels */
.comic-panel {
    /* Forces the 3 panels to each take up slightly less than 1/3 of the box */
    width: 31%; 
    height: auto; /* Ensures they scale proportionally without stretching */
    
    /* Applies your son's signature 12px comic border */
    border: 11px solid #000000;
    outline: 1px solid #7F7F7F;
    
    /* Crucial: Forces the 12px borders to be calculated INSIDE the 31% width limit */
    box-sizing: border-box; 
    
    /* Adds a small gap between the panels */
    margin: 0 1%; 
    
    /* Keeps them sitting perfectly side-by-side */
    display: inline-block; 
    vertical-align: top;
}

/* Footer Styling */
footer {
    background-color: #3399FE; /* Signature blue background */
    padding: 30px 20px;
    margin-top: 50px;
    /* 11px black border with 1px gray outline on top to separate it from content */
    border-top: 11px solid #000000;
    outline: 1px solid #7F7F7F;
    text-align: center;
}

footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    /* Flexbox evenly spaces the links across the entire container */
    justify-content: space-evenly; 
    flex-wrap: wrap; /* Ensures links wrap neatly on mobile screens */
    gap: 15px;
}

footer ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer ul li a:hover {
    color: #f1f1f1;
    text-decoration: underline;
}

footer p {
    color: #FFFFFF;
    margin: 0;
    font-size: 1em;
    font-weight: bold;
}