
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Landing Page Styles */
.landing {
    position: relative;
    text-align: center;
    height: 100vh; /* Set the container's height to 90% of viewport height */
    background-image: url('./imgs/king_welding_iron_beams_close_up_welding_mask.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.logo__img__landing{
    width: 64px;
    margin: .5rem;
    object-fit: contain;
}
.centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.centered-text h1 {
    font-size: 36px;
}
.centered-text p {
    margin-top: 1rem;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.centered-text-learnMore {
    position: relative;
    top: 12rem;
}
.centered-text-learnMore p {
    padding-bottom: 1rem;
    font-size: 16px;
}
.centered-text-learnMore span{
    font-weight: lighter;
    font-size: 50px;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #e94435;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.cta-button:hover {
    background-color: #ff6347;
}

/* Section Styles */
section {
    background-color: #f5f5f5;
    padding: 40px 0;
}
h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Form Styles */
form input,
form textarea,
form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
form button {
    background-color: #ff7f50;
    color: #fff;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #ff6347;
}

/* ANIMATIONS */
.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 1.5s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

/* adding amination with different delay below this comment */

.show.animation__delay__p1{
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
    transition: all 2s;
}
.show.animation__delay__p2{
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
    transition: all 2.5s;
}
/* END OF ANIMATIONS */

@media screen and (max-width: 987px) {
    .landing {
        /* height: 70vh; */
        background-size: cover;
        background-position: 20% center;
        background-attachment:scroll;
    }
    .centered-text{
        width: 90%;
        padding: 0;
        margin: 0;
    }
    .centered-text-learnMore {
        position: relative;
        top: 7rem;
    }
    .centered-text-learnMore p {
        padding-bottom: 1rem;
        font-size: 16px;
    }
    .centered-text-learnMore span{
        font-weight: lighter;
        font-size: 50px;
    }
}
