/* === COLLECTIONS PAGE === */

.hero-section {
    position: relative;
    height: 400px;
    margin: 40px;
    margin-top: 100px;
}

.hero {
    background-color: var(--color-04);
    height: 100%;
    width: 60%;
}

.hero-section .title-2 {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
    margin-right: 20px;
    font-size: 64px;
    line-height: 1.3;
}

.intro-section {
    padding: 60px 40px;
    max-width: 100%;
}

.intro-section h2 {
    margin-bottom: 40px;
}

.intro-section p {
    line-height: 1.8;
    font-size: 20px;
    margin-bottom: 15px;
    color: #555;
}

/* COLLECTION GRID */
.collection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    row-gap: 120px;
    padding: 0 40px;
    margin-top: 120px;
    position: relative;
}

/* LEFT SECTION - TEXT */
.collection-item.white {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--color-05);
    padding: 40px;
    padding-top: 280px;
    min-height: 100%;
    position: relative;
}

/* RIGHT SECTION - IMAGE */
.collection-item.coral {
    position: relative;
    background-color: var(--color-03);
    height: 280px;
    padding: 0;
    display: flex;
    align-items: flex-start;
}

/* IMAGE CONTAINER - OVERLAPPING */
.collection-item.coral .image-container {
    position: absolute;
    bottom: -270px;
    left: 40px;
    width: calc(100% - 80px);
    height: auto;
    z-index: 2;
    background-color: transparent !important;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.collection-item.coral .image-container > div {
    width: 100%;
    height: auto;
}

.collection-item h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.collection-item p {
    margin-bottom: 20px;
    color: #555;
}

.collection-item .btn {
    display: inline-flex;
    margin-top: auto;
}

.image-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    max-width: 450px;
}

.texte-a-gauche {
    text-align: left;
}
.texte-a-gauche .btn {
    align-self: flex-start;
}
.texte-a-droite {
    text-align: right;
}
.texte-a-droite .btn {
    align-self: flex-end;
}

