/* TOP BOARDER */
#stars {
    display: flex;
    justify-content: space-between; 
    align-items: center;             
    width: 100%;                     
}

#stars img {
    max-width: 250px;
}

/* HERO SECTION */
.hero {
    height: 80vh;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero h1 {
    font-family: "Erbaum-Black";
    letter-spacing: .5em;
    font-size: 3rem;
    margin: 0 0 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-align: center;
}

#main-logo {
    max-width: 250px;
}

.btn {
    background-color: #FCCF1E;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    color: #2E338B;
}

.btn:hover {
    background: #2E338B;
    color: #FCCF1E;
}



/* RESPONSIVE */
@media (max-width: 768px) {


    #stars img {
    max-width: 100px;
    }

    .hero h1 {
        font-family: "Erbaum-Black";
        letter-spacing: .4em;
        font-size: 2rem;
        margin: 0 0 1rem;
    }

    .hero p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
}


.inquiry-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inquiry-form h2 {
    text-align: center;
    margin-bottom: 5px;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.inquiry-form button {
    background-color: #FCCF1E;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: "body";
    font-size: large;
    color: #2E338B;
    margin: 0 auto;
}

.inquiry-form button:hover {
    background: #2E338B;
    color: #FCCF1E;
}
