.page-hero {
    background: linear-gradient(135deg, rgba(11, 28, 30, 0.9) 0%, rgba(0, 143, 140, 0.8) 100%), url('../img/banners/tailoring-items-arrangement-still-life-scaled.jpg');
    background-size: cover;
    background-position: center;
    padding: 180px 0 6rem 0;
    text-align: center;
    color: var(--text-on-dark);
    position: relative;
}

.page-hero h1 { text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); letter-spacing: -0.5px; max-width: 1000px; margin: 0 auto; line-height: 1.3; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; box-shadow: var(--shadow-md); z-index: 2; position: relative; }
.btn-primary { background-color: var(--primary-color); color: white; border: 2px solid var(--primary-color); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); background-color: var(--secondary-color); border-color: var(--secondary-color); }
.btn-outline { background-color: transparent; color: white; border: 2px solid white; box-shadow: none; }
.btn-outline:hover { background-color: white; color: var(--primary-color); transform: translateY(-2px); }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.info-card { text-align: center; padding: 2rem; background: #ffffff; border-radius: 16px; box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.info-icon { width: 60px; height: 60px; background: var(--bg-off-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-color); margin: 0 auto 1.5rem; font-size: 1.8rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); }
.info-card h4 { color: var(--text-on-light); margin-bottom: 0.5rem; font-size: 1.25rem; }
.info-card p { font-size: 1rem; margin-bottom: 0; }

.events-hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 3rem; margin-top: 1rem; }
.event-hub-card { position: relative; border-radius: 24px; overflow: hidden; min-height: 450px; display: flex; flex-direction: column; justify-content: flex-end; padding: 3rem 2rem; color: white; text-decoration: none; box-shadow: var(--shadow-md); transition: all 0.5s var(--ease-sq); }
.event-hub-card.card-2026 { background: url('../img/banners/DSC_0643-scaled.jpg') center/cover no-repeat; }
.event-hub-card.card-2025 { background: url('../img/banners/DSC_0140-scaled.jpg') center/cover no-repeat; }
.event-hub-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%); transition: opacity 0.5s ease; z-index: 1; }
.event-hub-card.card-2026::before { background: linear-gradient(to top, rgba(0, 143, 140, 0.95) 0%, rgba(11, 28, 30, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%); }
.event-hub-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.event-hub-content { position: relative; z-index: 2; text-align: left; }
.event-hub-badge { display: inline-block; background: var(--accent-color); color: #112d32; font-weight: 700; font-size: 0.85rem; padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 4px 10px rgba(63, 224, 219, 0.3); }
.event-hub-badge.archive { background: rgba(255, 255, 255, 0.2); color: white; backdrop-filter: blur(5px); box-shadow: none; border: 1px solid rgba(255, 255, 255, 0.4); }
.event-hub-content h3 { font-family: 'Merriweather', serif; font-size: 2.4rem; color: white; margin-bottom: 0.5rem; line-height: 1.2; }
.event-hub-content p { color: rgba(255, 255, 255, 0.9); font-size: 1.1rem; margin-bottom: 2rem; max-width: 90%; }
