html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Arial', sans-serif;
    text-align: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    /* NEW COLORS: Gradient from dark teal to gold for a strong base */
    background-image: linear-gradient(to bottom, #264653 11%, #ffd700 132%);
    color: #f0f0f0; /* Default text color for general content on dark background */
}

.home {
    width: 100%;
    /* NEW COLORS: Prominent gold band with slight transparency */
    background-color: rgba(255, 215, 0, 0.9); /* Gold with 90% opacity */
    padding-top: 15px; /* Increased padding */
    padding-bottom: 15px; /* Increased padding */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

.home a {
    display: inline-block; /* Ensure padding applies correctly */
    padding: 5px 20px; /* More reasonable padding for a link */
    /* NEW COLORS: Dark teal text on gold for strong contrast */
    color: #264653;
    text-decoration: none; /* Remove underline */
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.home a:hover {
    color: #ffffff; /* Lighter color on hover */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Adds a subtle shadow on hover */
}

h1 {
    display: block;
    font-size: 3.5em; /* Larger font size for impact */
    margin: 0.67em auto; /* Center with auto margins, adjusts to default block margins */
    line-height: 1.2;
    font-family: 'Arial', sans-serif;
    /* NEW COLORS: Gold color for the main heading, standing out */
    color: #ffd700;
    font-weight: 900; /* Extra bold */
    letter-spacing: 2px; /* Slightly spread out letters for elegance */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4); /* Stronger text shadow for depth */
}

/* --- Improved Image Handling --- */
img,
.image {
    width: 30vw; /* Responsive width */
    max-width: 300px; /* Cap image width at 300px on larger screens */
    margin: 1.5vh 1.5vw; /* Responsive margin around each image */
    border-radius: 8px; /* Slightly rounded corners for a softer look */
    /* NEW: Subtle shadow for depth and separation */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth transition for hover effects */
}

/* For actual <img> tags, ensure aspect ratio is maintained and they fit properly */
img {
    height: auto; /* IMPORTANT: Maintain the natural aspect ratio of the image */
    max-height: 200px; /* Cap height to match .image for visual consistency */
    object-fit: cover; /* Scales the image to cover the content box, preserving aspect ratio and cropping if necessary */
    display: block; /* Ensures object-fit and margin work consistently */
}

/* For <div> elements used as image containers with background-image */
.image {
    display: inline-block; /* Keep inline-block for existing non-flex layouts, but flex-items override this */
    height: 20vw; /* Sets a proportional height based on viewport width, creating a 3:2 aspect ratio with 30vw width */
    max-height: 200px; /* Cap height for visual consistency */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; /* Ensures the background image covers the element while maintaining its aspect ratio */
}

/* --- Improved Image Group Layout --- */
.spotlight-group {
    /* NEW COLORS: Dark teal with transparency for a section background */
    background: rgba(38, 70, 83, 0.8); /* #264653 with 80% opacity */
    padding: 60px 0; /* Add generous top/bottom padding for the group */
    
    display: flex; /* Use Flexbox for powerful responsive layout */
    flex-wrap: wrap; /* Allow items to wrap to the next line on smaller screens */
    justify-content: center; /* Center items horizontally within the container */
    align-items: flex-start; /* Align items to the top of the line */
    gap: 2vw; /* Add responsive spacing between items. Adjusted for better visual separation. */
    border-radius: 10px; /* Slightly rounded corners for the group container */
    margin: 20px auto; /* Center the group and add some vertical margin */
    max-width: 1200px; /* Limit group width for larger screens */
}

a {
    display: inline-block; /* Kept existing property, ensure it doesn't conflict */
}

b {
    display: block;
    padding: 12px 20px; /* Increased padding */
    /* NEW COLORS: Gold with transparency for highlighting text */
    background: rgba(255, 215, 0, 0.7); /* #ffd700 with 70% opacity */
    color: #264653; /* Dark teal text for strong contrast on gold */
    font-weight: bold;
    margin-top: 10px; /* Space from element above */
    border-radius: 5px; /* Slightly rounded corners */
}

button {
    padding: 10px 25px; /* Increased padding for a more prominent button */
    /* NEW COLORS: Dark teal background, gold text, gold border */
    background-color: #264653;
    color: #ffd700;
    border: 2px solid #ffd700;
    border-radius: 30px; /* Pill-shaped button */
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px; /* Space from other elements */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease; /* Smooth hover effects */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Button shadow */
}

button:hover {
    background-color: #ffd700; /* Gold background on hover */
    color: #264653; /* Dark teal text on hover */
    transform: translateY(-2px); /* Slight lift on hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4); /* Intensify shadow on hover */
}

.spotlight.image {
    cursor: pointer;
}

.spotlight.image:hover {
    transform: scale(1.05); /* Slightly enlarge image on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); /* Stronger shadow on hover */
}