:root {
    --background: #FFFFFF;
    --text: #FFF;
    --headings: #FF4081;
    --muted: #F2F2F2;
    --primary: #FF4081;
    --secondary: #1D3557;
}

.theme-primary {
    --background: #FFFFFF;
    --headings: #FF4081;
    --text: #2E4053;
    --muted: #F2F2F2;
}

.theme-dark {
    --background: #1C1C1C;
    --headings: #FF4081;
    --text: #F1F1F1;
    --muted: #444444;
}

.theme-light {
    --background: #FFFFFF;
    --headings: #FF4081;
    --text: #2E4053;
    --muted: #F2F2F2;
}

.theme-footer {
    --background: #FF4081;
    --contact-icons-color: #FFFFFF;
    --contact-text-color: #FFFFFF;
    --contact-circles-color: #ff8bb1;
    --text: #FFFFFF;
    --headings: #FFFFFF;
}

.section-presentation {
    background: #1D3557;
}

.circle-container {
    width: 250px;
    height: 250px;
    background-color: #FF4081;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2em;
    opacity: 1;
    animation: rotatePhilip .8s ease-out forwards;
}

.flamingo-img {
    width: 70%;
    height: auto;
}

.hero-contents {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4em 2em;
    font-weight: bold;
    color: #333333;
    gap: 1.5em;
}

.hero-wordmark {
    font-size: 2.2em;
    font-weight: bold;
    color: #FF4081;
    display: inline-flex;
    align-items: center;
    opacity: 0;
    animation: fadeInText .5s .5s forwards;
    padding: 1em 2em;
    border-radius: 8px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    gap: 0.3em;
}

.hero-wordmark span {
    color: #1D3557;
    display: inline;
}

.philip-logo {
    width: 150px;
    height: auto;
}

@keyframes fadeInText {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes rotatePhilip {
    0% {
        transform: rotateY(0deg);
        opacity: 0;
    }
    50% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(360deg);
        opacity: 1;
    }
}

.hero-registration {
    display: inline-block;
    position: relative;
}

.hero-registration-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 40px;
    font-size: 1.2em;
    border-radius: 6px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    background-color: #1D3557;
    min-width: 450px;
    justify-content: center;
}

.hero-registration-button-1 {
    min-width: 350px;
}

.hero-registration-button-2 {
    background-color: #FF4081;
    min-width: 200px;
}

.hero-registration-button:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.hero-registration-button-2:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 2em;
    width: 100%;
}

.hero-registration-button {
    display: flex;
    font-size: 1.2em;
    border-radius: 6px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    min-width: 450px;
    position: relative;
}

.hero-registration-button-1 {
    min-width: 350px;
    background-color: #1D3557;
}

.hero-registration-button-2 {
    min-width: 200px;
    background-color: #FF4081;
}

.hero-registration-button:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.hero-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    transition: transform 0.4s ease, opacity 0.6s ease;
    position: absolute;
    left: 40px;
    opacity: 0;
}

.hero-registration-button:hover .hero-icon {
    transform: translateX(6px);
    opacity: 1;
    stroke: #fff;
}

.hero-registration-button p {
    margin: 0;
    transition: transform 0.4s ease;
}

.hero-registration-button:hover p,
.hero-registration-button-2:hover p {
    transform: translateX(8px);
}

.hero-registration-button svg,
.hero-registration-button-2 svg {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-registration-button:hover svg,
.hero-registration-button-2:hover svg {
    opacity: 1;
    transform: translateX(0);
}

.hero-registration-button:hover {
    background-color: #FF4081;
    transform: translateY(-2px);
}

.hero-registration-button svg {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-registration-button:hover svg {
    opacity: 1;
    transform: translateX(0);
}

.button-drive, .button-register {
    margin-right: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.hero-registration-button:hover .button-drive, .hero-registration-button:hover .button-register {
    transform: translateX(8px);
}

.hero-registration-button svg.hidden + .button-drive, .hero-registration-button svg.hidden + .button-register {
    transform: translateX(-12px);
}

.warning-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding: 12px 16px;
    border: 1px solid #FFC105;
    background-color: #FFF8E1;
    border-radius: 5px;
    width: 140%;
    box-sizing: border-box;
    margin-left: 10%;
}

.warning-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.warning-text {
    font-size: 1.6rem;
    font-weight: normal;
    color: #333;
    line-height: 1.5;
    flex-grow: 1;
}

.warning-text a {
    color: #0073e6;
    text-decoration: none;
}

.warning-text a:hover {
    text-decoration: underline;
}

.presentation-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    color: #000000;
    grid-row: span 2;
    background-image: url(../icons/leaves.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.presentation-feature-icon svg {
    width: 2.4rem;
    height: 2.4rem;
}

.hero-bullet {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: .5em;
}

.date-text {
    line-height: 1.4;
}

.partner-brio {
    width: 9rem;
}

.partner-coop {
    width: 10rem;
}

.partner-eltonymate {
    width: 8rem;
}

.partner-andros {
    width: 10rem;
}
