/* ------------------------------
   Global Styles
-------------------------------- */
body {
    font-family: 'Roboto', sans-serif; /* Roboto for body text */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
}

header {
    background-color: #222;
    color: #f0e6d6;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 2rem;
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif; /* Orbitron for headers */
}

h2 {
    font-size: 1.8rem;
    color: #f0e6d6;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif; /* Orbitron for section headings */
}

p {
    font-size: 1.1rem;
    color: #f0e6d6;
    font-family: 'Roboto', sans-serif; /* Roboto for paragraph text */
}

section {
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(34, 34, 34, 0.9);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

footer {
    background-color: #222;
    color: #f0e6d6;
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
}

a {
    color: #f0e6d6;
    text-decoration: none;
    border-bottom: 2px solid #f0e6d6;
}

a:hover {
    color: #ccc;
    border-bottom-color: #ccc;
}

/* 
   .image-container:
   - Basic block container
   - Center images horizontally (optional)
*/
.image-container {
    text-align: center;
    margin-bottom: 20px;
}

/*
   Make images inline-block so they don’t stretch each other’s height.
   Each gets max-width: 30%, but height remains auto.
*/
.image-container img {
    display: inline-block !important;
    vertical-align: top !important;
    max-width: 30% !important;
    height: auto !important;
    margin: 0 10px 10px 0;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ------------------------------
   Responsive Tweaks
-------------------------------- */
@media (max-width: 768px) {
    .image-container img {
        max-width: 45% !important;
    }
}

@media (max-width: 500px) {
    .image-container img {
        max-width: 100% !important;
    }
}
