/* =============================================
   EXPO.CSS — Exposició Homenatge
   ============================================= */

/* ==================== CONTINGUT PRINCIPAL ==================== */
.expo-contingut {
    height: 100%;
    overflow-y: auto;
    padding: 20px 40px 24px;
    background: #f8f6f2;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expo-contingut::-webkit-scrollbar { width: 6px; }
.expo-contingut::-webkit-scrollbar-track { background: transparent; }
.expo-contingut::-webkit-scrollbar-thumb { background: #d5c9b8; border-radius: 3px; }

/* ==================== INTRODUCCIÓ ==================== */
.expo-intro {
    max-width: 820px;
    margin: 0 auto 40px;
    text-align: center;
}

.expo-intro h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: normal;
    color: #4a3828;
    margin-bottom: 16px;
}

.expo-intro p {
    font-family: Georgia, serif;
    font-size: 0.92rem;
    color: #555;
    line-height: 1.8;
    text-align: justify;
    text-indent: 1.5em;
}

/* ==================== GRAELLA DE SALES ==================== */
.sales-graella {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

/* ==================== CARTA DE SALA ==================== */
.sala-carta {
    background: #fff;
    border: 1px solid #ddd4c4;
    border-radius: 10px;
    padding: 28px 30px 24px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sala-num {
    font-family: Georgia, serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a08060;
}

.sala-carta h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: normal;
    color: #4a3828;
    border-bottom: 1px solid #e8e0d4;
    padding-bottom: 10px;
}

.sala-carta p {
    font-family: Georgia, serif;
    font-size: 0.84rem;
    color: #555;
    line-height: 1.75;
    text-align: justify;
    text-indent: 1.2em;
    flex: 1;
}

.sala-btn {
    display: inline-block;
    margin-top: 8px;
    align-self: flex-start;
    font-family: Georgia, serif;
    font-size: 0.8rem;
    color: #7a5c3a;
    text-decoration: none;
    border: 1px solid #c0a880;
    border-radius: 4px;
    padding: 5px 14px;
    transition: background 0.2s, color 0.2s;
}

.sala-btn:hover {
    background: #7a5c3a;
    color: #fff;
}

/* ==================== AGRAÏMENTS ==================== */
.agr-layout {
    position: relative;
    width: 720px;
}

.agr-botons {
    position: absolute;
    left: calc(100% + 72px);
    top: 50%;
    transform: translateY(-50%);
    width: 210px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.agr-boto {
    display: block;
    font-family: Georgia, serif;
    font-size: 0.88rem;
    color: #1a1208;
    text-decoration: none;
    background: #d8bc9a;
    border: 1px solid #c4a47e;
    border-radius: 6px;
    padding: 11px 16px;
    text-align: left;
    transition: background 0.2s, color 0.2s;
}

.agr-boto::after {
    content: ' →';
    float: right;
    color: #1a1208;
    transition: color 0.2s;
    display: inline-block;
}

.agr-boto:hover {
    background: #5d3f22;
    color: #fff;
}

.agr-boto:hover::after {
    color: #fff;
}

.agr-caixa {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ddd4c4;
    border-radius: 10px;
    padding: 24px 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.09);
}

.agr-caixa h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: normal;
    color: #4a3828;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e0d8cc;
    text-align: center;
}

.agr-caixa p {
    font-family: Georgia, serif;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: justify;
    text-indent: 1.5em;
    filter: blur(3px);
    user-select: none;
}

.agr-firma {
    margin-top: 28px !important;
    text-align: right !important;
    text-indent: 0 !important;
    font-style: italic;
    color: #7a5c3a !important;
    line-height: 1.6 !important;
}

.agr-firma span {
    font-size: 0.78rem;
    color: #a08060;
}

.agr-separador {
    border-top: 1px solid #e0d8cc;
    margin: 28px 0;
}

.agr-seguent {
    margin-top: 32px;
    text-align: center;
}

.agr-seguent .sala-btn {
    font-size: 0.88rem;
    padding: 8px 22px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .expo-contingut {
        padding: 20px 16px 30px;
    }

    .sales-graella {
        grid-template-columns: 1fr;
    }

    .sala-carta {
        padding: 22px 20px 18px;
    }
}
