/* organizer_marketing.css */

/* Hero Section */
.hero-section {
    background-image: url("../img/marketing_hero.dd23c2b4a38d.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Ensure text is readable */
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Dark overly for text contrast */
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-size: 32px;
}

/* Typography */
.organizer-marketing-page h1,
.organizer-marketing-page h2,
.organizer-marketing-page h3,
.organizer-marketing-page h4 {
    font-family: 'Montserrat', sans-serif;
    /* Example modern font, adjust if needed */
}

/* CTA Section */
.cta-section {
    background: linear-gradient(45deg, #212529, #343a40);
}