/* ===== INDEX PAGE ONLY ===== */

.index-hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.index-hero .overlay {
    background: rgba(0,0,0,0.6);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Index page main title */
.index-hero h1 {
    font-size: 42px;   /* change this value */
    max-width: 1000px;
    line-height: 1.25;
    margin-bottom: 20px;
}


/* ===== INNER PAGES ONLY ===== */

.inner-page {
    background: url("../images/conference-bg.png") no-repeat center center fixed;
    background-size: cover;
}

.inner-page .page-container {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.4;
    }

    .hero h4 {
        font-size: 1.1rem;
    }
}

/* Contact Page Center Alignment */
.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-wrapper p {
    line-height: 1.7;
}
