.attire-section {
    width: 100vw;
    background: #ffffff; 
    position: relative;
    /* overflow: hidden; REMOVED so the flower isn't sliced off */
    padding-bottom: 120px;
    z-index: 20; /* Ensures the flower sits above the dark Travel section */
}

/* --- OVERLAPPING FLOWER --- */
.flower-overlap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%); /* Pulls it 50% up and exactly into the center */
    width: 180px; /* Adjust this width based on how big your flower is */
    height: auto;
    z-index: 30;
    pointer-events: none; /* Prevents it from blocking mouse clicks */
}

/* --- INTRO ROW --- */
.attire-intro-row {
    padding: 120px 5vw 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.attire-intro-row h2 {
    color: #000 !important;
    font-size: 2.5rem;
}

.attire-main-text {
    font-family: var(--secondary-font);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-black);
    margin-top: 20px;
    opacity: 0.8;
}

/* --- LOOKBOOK CARDS --- */
.lookbook-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5vw;
    height: 550px; 
    margin-top:-70px ;
}

.lookbook-card {
    flex: 1;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    cursor: none; 
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    align-items: flex-start;     
    padding: 60px 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
}

.lookbook-card:hover {
    transform: translateY(-10px); 
}

/* Permanent Colors */
.groom-card { background-color: #90D5FF; color: #000; }
.bride-card { background-color: #CC5500; color: #fff; }

/* --- CORNER IMAGES --- */
.card-img {
    position: absolute;
    bottom: -10px;
    height: 85%;
    width: auto;
    object-fit: contain;
    z-index: 1;
    pointer-events: none; 
}
/* Place Both Images on the Right */
.groom-img { right: -10px; }
.bride-img { right: -10px; }

/* --- CONTENT STYLING --- */
.card-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.card-content h3 {
    font-family: var(--primary-font);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 15px;
}

.card-content p {
    font-family: var(--secondary-font);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 40px;
    font-weight: 500;
}

/* Custom Buttons */
.attire-btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--secondary-font);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.groom-card .attire-btn { border: 1px solid #000; color: #000; }
.groom-card .attire-btn:hover { background: #000; color: #ADD8E6; }

.bride-card .attire-btn { border: 1px solid #fff; color: #fff; }
.bride-card .attire-btn:hover { background: #fff; color: #CC5500; }

/* --- THE EDITORIAL PHYSICS CURSOR --- */
.editorial-cursor {
    position: fixed;
    top: 0; left: 0;
    padding: 12px 25px;
    background: #000;
    color: #fff;
    pointer-events: none;
    z-index: 9999;
    opacity: 0; 
    transform: translate(-50%, -50%);
    white-space: nowrap;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
    transition: opacity 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.editorial-cursor text, .editorial-cursor span {
    font-family: var(--secondary-font);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

.groom-card:hover ~ .editorial-cursor { background: #000; color: #ADD8E6; }
.bride-card:hover ~ .editorial-cursor { background: #fff; color: #CC5500; }

/* --- MOBILE --- */
@media (max-width: 900px) {
    .lookbook-wrapper { flex-direction: column; height: auto; }
    .lookbook-card { height: 400px; padding: 40px 30px; cursor: default; }
    .card-content h3 { font-size: 2.5rem; }
    .editorial-cursor { display: none !important; }
    .card-img { height: 90%; opacity: 0.6; }
    .flower-overlap { width: 150px; } /* Shrinks flower a bit for mobile screens */
}