/* ===============================
   Header Titles & Description
   =============================== */
.Header__welcomeTitle,
.Header__searchTitle {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0px;
    color: #ffffff !important; /* Make text white */
    animation: scaleFadeIn 0.6s ease-out forwards;
}

.Header__welcomeDescription {
    font-size: 1.2rem;
    color: #ffffff !important; /* Make description text white */
    animation: fadeIn 0.5s ease-in 0.2s;
    animation-fill-mode: both;
}

/* ===============================
   Text Links — Hidden URL Styling
   =============================== */
.Header__extraLinks p {
    color: #ffffff !important;  /* White text */
    font-size: 1.1rem;
    margin-top: 10px;
}

.Header__extraLinks a {
    color: #ffffff !important;  /* Make link text white */
    text-decoration: none !important; /* Remove underline */
    cursor: pointer;
    opacity: 1;
}

/* Optional: Subtle hover effect */
.Header__extraLinks a:hover {
    opacity: 0.85;
}

/* ===============================
   Animations
   =============================== */
@keyframes scaleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   Footer Button Styling
   =============================== */
.Footer__container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.Button__footerBtn {
    border: 1px solid #FF671F;
    color: #FF671F;
    background-color: #FFFFFF;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.Button__footerBtn:hover {
    border: 1px solid #FF671F;
    color: #FF671F;
    background-color: #FFFAF7;
}

/* Container for the two links */
.Header__extraLinks {
    display: flex;
    justify-content: center;   /* Center horizontally */
    align-items: center;
    gap: 40px;                 /* Space between the two items */
    margin-top: 30px;          /* Lower them below search bar */
}

/* Link styling */
.Header__extraLinks a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.25s ease;
}

/* Hover effect */
.Header__extraLinks a:hover {
    opacity: 0.8;
}


