/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Background Color */
body {
    background-color: black;
}

/* Placeholder Header */
.header {
     background: none; /* Remove background color */
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header img {
    max-width: 100%;
    height: auto;
    object-fit: cover; /* Ensures the image looks good */
}

/* Main Content Wrapper */
.container {
    padding: 50px;
    max-width: 1000px;
    margin: auto;
}

/* Heading */
h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 4.0rem;
    font-weight: bold;
    text-align: center;
    font-family: serif;
}

/* Content Layout using Float */
.content {
    overflow: hidden; /* Clears float elements */
}

/* Text Section (Left Side) */
.text-section {
    width: 45%;
    float: left;
    font-size: 1.1rem;
    color: white;
    line-height: 1.8;
}

/* Image Section (Right Side) */
.image-section {
    width: 50%;
    float: right;
}

/* Individual Image Box (Now Clickable) */
.image-box {
    display: inline-block; /* Aligns boxes side by side */
    width: 200px; /* Adjust width as needed */
    height: 350px;
    background: black; /* Matches background */
    padding: 10px;
    margin: 10px; /* Adds spacing */
    border: 3px solid #BA0021;
    border-radius: 8px;
    color: black;
    vertical-align: top;
}
/* Hover effect */
.image-box:hover {
    background-color: #C41E3A;
    transition: 0.3s;
}

/* Image Styling */
.image-box img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Image Descriptions */
.image-box p {
    margin-top: 10px;
    font-weight: bold;
    color: white;

}
/* Clearfix */
.container::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive Design for Mobile Screens */
@media (max-width: 768px) {
    .text-section, .image-section {
        width: 100%;
        float: none;
    }
    .image-box {
        width: 100%;
    }
}
