﻿/* Hero Section */
.home-hero {
    background-color: var(--corOdisseusPurple) !important;
    color: var(--corBranco);
    opacity: 1;
    transition: all .2s ease-in-out;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
}

.hero-desktop {
    display: none;
    width: 100%;
    height: calc(100vh - 76px);
    background-size: cover;
}

.hero-mobile h1,
.hero-desktop h1,
.hero-mobile p,
.hero-desktop p {
    font-family: "HermesBold";
}

.hero-mobile h1,
.hero-desktop h1 {
    color: var(--corOdisseusPurple);
    text-align: center;
}

.hero-mobile h1 {
    font-size: 1.15rem;
    line-height: 1.3;
}

.hero-desktop h1,
.hero-desktop h2 {
    font-size: 1.5rem;
    line-height: 1.5;
}

.hero-desktop p {
    color: var(--corOdisseusPurple);
}

.hero-mobile img, .hero-desktop img {
    max-width: 100%;
    vertical-align: top;
}

.hero-mobile .content {
    padding: 2.5rem 1.5rem;
    display: grid;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-desktop .content {
    display: grid;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(255,255,255,.7);
    padding: 3rem 2rem;
}

.hero-desktop .container {
    display: grid;
    grid-template-columns: 420px 1fr;
}

/*CtA Button*/
.callToAction-btn {
    background-color: var(--corOdisseusPurple);
    color: white !important; /*White text*/
    padding: 12px 24px; /*Padding*/
    font-size: 16px; /*Font size*/
    border: none; /*Remove borders */
    border-radius: 8px; /*Rounded corners*/
    cursor: pointer; /*Pointer/hand icon */
    transition: background-color 0.3s ease; /*Smooth transition*/
    text-transform: uppercase; /*Uppercase text */
    font-weight: bold; /*Bold text */
}

    .callToAction-btn:hover {
        background-color: goldenrod; /*Gold on hover*/
    }

    .callToAction-btn:active {
        background-color: darkgoldenrod; /*Even darker when pressed */
        transform: scale(0.98); /*Slightly scale down when clicked */
    }

    .callToAction-btn:focus {
        outline: none; /*Remove outline */
        box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.5); /*Green focus outline */
    }

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

@media screen and (min-width: 768px) {
    .hero-mobile .content {
        padding: 3rem;
    }

    .hero-mobile h1 {
        font-size: 2rem;
        /*max-width: 650px;*/
    }
}

@media screen and (min-width: 1024px) {
    .home-hero {
        padding-bottom: 0;
    }

    .hero-mobile {
        display: none;
    }

    .hero-desktop {
        display: grid;
    }
}