/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

/* Full-width container */
.aym-showcase {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
    padding: 0;
}

.aym-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.aym-zones {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.aym-zone {
    position: relative;
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.aym-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.aym-zone:hover .aym-overlay {
    background: rgba(0,0,0,0.7);
}

.aym-num {
    display: none;
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s;
}

.aym-btn {
    background: #9b5f45;
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    pointer-events: none;
}

.aym-zone:hover .aym-btn {
    opacity: 1;
    transform: translateY(0);
}

.aym-btn:hover {
    background: #7d4a35;
}

/* Tablette */
@media (max-width: 1024px) and (min-width: 769px) {
    .aym-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .aym-zone {
        width: 20%;
    }
    
    .aym-overlay {
        background: rgba(0,0,0,0.2);
    }
    
    .aym-zone:hover .aym-overlay {
        background: rgba(0,0,0,0.6);
    }
    
    .aym-num {
        display: none;
    }
    
    .aym-btn {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* Très petit mobile */
@media (max-width: 480px) {
    .aym-num {
        font-size: 20px;
    }
    
    .aym-btn {
        font-size: 9px;
        padding: 5px 10px;
    }
}
