/* 0. Top-level section container */
.aluminium-section {
    width: 100vw;
    min-height: 80vh;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
    box-sizing: border-box;
    flex-wrap: wrap;
    justify-content: stretch;
    align-items: center;
    background-color: #f8f8f8;
}

/* Responsive collapse for smaller screens */
@media (max-width: 768px) {
    .aluminium-section {
        flex-direction: column;
        padding: 1rem;
    }
}

/* 1. Content container with rounded corners, white background and shadow */
.aluminium-section-content {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: hidden;
    width: auto;
    min-height: 400px;
    max-width: 100%;            /* Don't overflow */
    box-sizing: border-box;
    flex: 1 1 0;             /* Allow cards to grow/shrink */
    min-width: 600px;        /* Only wrap when smaller than this */
}

/* Collapse columns on narrow screens */
@media (max-width: 768px) {
    .aluminium-section-content {
        min-width: 100%;
        flex-direction: column;
        min-height: fit-content;
    }
}

/* 2. Creative image container */
.aluminium-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    min-height: 300px;
    filter: brightness(0.95);
}

.aluminium-image:hover {
    transform: scale(1.02);
}

/* 2. Info container with text */
.aluminium-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 1rem;
    box-sizing: border-box;
}

/* 3. Title */
.aluminium-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e1e1e;
    margin: 0;
}

/* 3. Description */
.aluminium-description {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.6;
}

.aluminium-hero{
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    background-size: cover;
    background-position: center;
    backdrop-filter: brightness(0.4);
}

.aluminium-hero-container{
    background-size: cover;
    background-position: center;
}
