/* Hero Section */
.hero {
    position: relative;
    z-index: 1; /* Ensures hero is above background shapes */
    background: linear-gradient(135deg, #800000 0%, #a00000 100%);
    color: #fff;
    overflow: hidden;
    height: 100vh;
}

.hero-shapes {
    position: fixed; /* Positions shapes relative to viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Places shapes behind hero and footer */
    pointer-events: none;
}

.shape {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.shape1 {
    width: 400px;
    height: 400px;
    top: 12%;
    left: 10%;
}
@media (max-width: 520px) {
    .shape1 {
    top: 8%;
    width: 300px;
    height: 300px;
    }
}

.shape2 {
    width: 600px;
    height: 600px;
    bottom: -100px;
    right: -200px;
}
@media (max-width: 865px) {
    .shape2 {
    width: 450px;
    height: 450px;
    }
}
@media (max-width: 625px) {
    .shape2 {
    width: 400px;
    height: 400px;
    }
}

.shape3 {
    width: 250px;
    height: 250px;
    top: 60%;
    left: 40%;
}
@media (max-width: 1100px) {
    .shape3 {
    display: none; 
    }
}



.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 100px 20px 80px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

@media (max-width: 550px) {
    .hero-content h1 {
        font-size: 32px;
    }
}
@media (max-width: 450px) {
    .hero-content h1 {
        font-size: 28px;
    }
}
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 24px;
    }
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
}

@media (max-width: 550px) {
    .hero-content p {
        font-size: 16px;
    }
}

/* Button Design */
.btn-container {
    text-align: center;
}

.btn-signup {
    background-color: #fff;
    color: #800000;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.btn-signup:hover {
    background-color: #a00000;
    color: #fff;
}

/* Mission Section */
.mission {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
    position: relative;
    z-index: 2; /* Ensures mission section covers background shapes */
}

.mission h2 {
    color: #800000;
    font-size: 36px;
    margin-bottom: 20px;
}

.mission p {
    color: #333;
    font-size: 20px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 550px) {
    .mission h2 {
        font-size: 28px;
    }
    .mission p {
        font-size: 16px;
    }
}
