/***************************** pageWelcomeStyle *****************************/
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.welcome-container {
    position: relative;
    height: 100vh;
    width: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.welcome-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #ec3338;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.welcome-title::before {
    content: "PHILIPPINES";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-text-stroke: 12px white;
    stroke-linejoin: round;
    color: white;
    z-index: -1;
    -webkit-font-smoothing: antialiased;
}

.welcome-description {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #ec3338;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.welcome-description::before {
    content: "YOUR INTEGRATED NETWORK OF GLASS AND ALUMINUM SOLUTIONS";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-text-stroke: 12px white;
    stroke-linejoin: round;
    color: white;
    z-index: -1;
    -webkit-font-smoothing: antialiased;
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    background-color: white;
    color: #1a1a1a;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-get-started:hover {
    background-color: #ec3338;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.btn-get-started:active {
    transform: scale(0.95);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.btn-get-started:hover .arrow-icon {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .welcome-title {
        font-size: 3rem;
    }

    .welcome-description {
        font-size: 1.125rem;
    }
}

.bottom-right-image {
    position: absolute;
    bottom: 20px;
    /* distance from bottom */
    right: 20px;
    /* distance from right */
    z-index: 15;
    /* ensures it sits above overlay/background */
}

.bottom-right-image img {
    max-width: 150px;
    /* adjust size as needed */
    height: auto;
    border-radius: 8px;
    /* optional: rounded corners */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    /* optional: subtle shadow */
}

/* For the Logo Image */
.navbar-brand img {
    /* filter: drop-shadow follows the shape of the PNG transparent edges */
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

/* For the Text (Title and Description) */
.welcome-title {
    /* horizontal offset, vertical offset, blur radius, color */
    text-shadow:
        2px 2px 4px rgba(255, 255, 255, 0.5),
        -1px -1px 0 rgba(255, 255, 255, 0.3);
}

/* Optional: Add it to the button too for consistency */
.btn-get-started {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}
