body {
    font-family: "Open Sans", sans-serif;
    margin: 0px;
    padding: 0px;
    background-color: #f1f1f1;
}

header {
    background-color: #f1f1f1;

}


.banner-image-container {
    background-image: url('/assets/salesforce_k_splash_simon.png');
    background-size: cover;
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    animation: fadeIn 1.5s ease-in forwards;
    text-align: center;
    display: flex;
    align-items: center; /* Vertically center */
    justify-content: center; /* Horizontally center */
    margin: 0px;
    width: 100%; /* Ensures the container takes up the full width of the screen */
    height: 100vh; /* Maintains the aspect ratio based on width */
    overflow: hidden; /* Prevents the image from overflowing the container */
    opacity: 0;

}

.banner-image-container h1 {
    color: white; /* Sets text color to white */
    padding: 50px 50px 50px 50px;
    font-size: 4rem; /* Adjust for desired size */
    opacity: 1;
    z-index: 5000;
    font-family: 'Poppins', sans-serif;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); Adds a shadow for better contrast */
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px; /* Adjust spacing between characters */
    animation: fadeInUp 1.5s ease-out forwards;
}

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

.banner-image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    z-index: 1;
}

.banner-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire container */
}

.banner-image {
    width: 100%; /* The image will stretch to cover the width of the container */
    height: auto; /* The height will adjust proportionally based on the width */
    object-fit: cover; /* Ensures the image covers the container without distortion */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}



.two-column-container {
    display: flex; /* selecting a flexbox */
    flex-direction: row;
    align-items: center;  /* Aligns items vertically */
    justify-content: space-between; /* Distributes content evenly */
    gap: 20px; /* Space between columns */
    max-width: 1200px; /* Sets a max width */
    margin: 0 auto; /* Centers the container */
    padding: 20px;
    /* Animation setup */
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Starts slightly below */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Add a class to trigger animation */
.two-column-container.show {
    opacity: 1;
    transform: translateY(0);
}

.text-column {
    flex: 1; /* Takes up available space */
    max-width: 50%; /* Limits width */
}

.text-column h2 {
    font-size: 2rem; /* Adjusts heading size */
    margin-bottom: 10px;
    color: #333; /* Dark text */
}

.text-column p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666; /* Lighter text */
}

/* Right column (image) */
.image-column {
    flex: 1; /* Takes up available space */
    max-width: 50%;
    text-align: center; /* Centers the image */
}

.image-column img {
    width: 100%; /* Makes image responsive */
    height: auto;
    border-radius: 8px; /* Optional: rounded corners */
}

form {
    position: relative;
    width:60%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Adds spacing between form rows */
}



form div {
    margin-bottom: 15px; /* Adds space between fields */
}

label {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 5px;
    width: 20%;
    position: relative;
    left: 1%;
    margin-right: 30px;
    flex: 1; /* Ensures labels take up equal space */
    text-align: left; /* Aligns labels to the left */

}

input[type=text] {
    display: block;
    position: relative;
    margin-left: 1%;

    background-color: #9933ff;
    height: 25px; /* Sets a specific height for the input field */
    width: 100%; /* Ensures input takes up full width */
}

input[type=email] {
    display: block;
    position: relative;
    margin-left: 1%;
    background-color: #9933ff;
    height: 25px; /* Sets a specific height for the input field */
    width: 100%; /* Ensures input takes up full width */
}

input[type=phone] {
    display: block;
    position: relative;
    margin-left: 1%;
    background-color: #9933ff;
    height: 25px; /* Sets a specific height for the input field */
    width: 100%; /* Ensures input takes up full width */
}

input[type=message] {
    display: block;
    position: relative;
    left: 30%;
    row-span: 3;
    background-color: #9AE5F8;
}

textarea {
    display: block;
    position: relative;
    left: 30%;
    background-color: #9AE5F8;
}


input[type="submit"] {
    background-color:  forestgreen;
    color: white;
    font-weight: bold;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%; /* Makes submit button width auto */
    margin-right: 1%; /* Aligns the submit button to the right */

    transition: background-color 0.3s ease-in-out;
}
input[type="submit"]:hover {
    background-color: #0056b3;
}
.form-row {
    display: flex; /* Use flexbox for row layout */
    align-items: left; /* Align items vertically */
    margin-bottom: 15px; /* Space between rows */
}

input {
    color: white; /* Makes the text inside the input fields white */
    /* background-color: transparent; /* Optional: makes the background transparent */
    height: 50px; /* Adjust height */
    padding: 10px;
    font-size: 1rem;

    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}
/* Ensure the placeholder text is also visible */
input::placeholder {
    color: rgba(255, 255, 255, 0.7); /* Light white placeholder */
}

@media screen and (max-width: 760px) {
    nav {
        flex-direction: column;
        align-items: center;
    }
    .menu-icon {
        display: block;
    }
    .menu-links {
        display: none;
    }

    .two-column-container {
        diaplay: flex;
        flex-direction: column; /* Stack items vertically */
        text-align: center;
    }

    .text-column,
    .image-column {
        max-width: 100%;
        text-align: center;
    }




    footer {
        flex-direction: column; /* Stacks columns vertically */
        align-items: center; /* Centers columns horizontally */
        flex-wrap: wrap; /* Ensures elements wrap if necessary */
    }
    .footer-column {
        margin-bottom: 20px; /* Adds spacing between stacked columns */
        width: 100%; /* Ensures full width for each column */
        text-align: center; /* Centers the content inside each column */
    }

    form {
        position: relative;
        width:80%;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 15px; /* Adds spacing between form rows */
    }



    form div {
        margin-bottom: 15px; /* Adds space between fields */
    }

    label {
        display: flex;
        flex-direction: column;
        font-size: 1rem;
        font-weight: normal;
        margin-bottom: 5px;
        width: 20%;
        position: relative;
        left: 1%;
        margin-right: 30px;
        flex: 1; /* Ensures labels take up equal space */
        text-align: left; /* Aligns labels to the left */

    }

    input[type=text] {
        display: block;
        position: relative;
        margin-left: 1%;
        color: white;
        background-color: #9933ff;
        height: 25px; /* Sets a specific height for the input field */
        width: 100%; /* Ensures input takes up full width */
    }

    input[type=email] {
        display: block;
        position: relative;
        margin-left: 1%;
        color: white;
        background-color: #9933ff;
        height: 25px; /* Sets a specific height for the input field */
        width: 100%; /* Ensures input takes up full width */
    }

    input[type=phone] {
        display: block;
        position: relative;
        margin-left: 1%;
        color: white;
        background-color: #9933ff;
        height: 25px; /* Sets a specific height for the input field */
        width: 100%; /* Ensures input takes up full width */
    }

    input[type=message] {
        display: block;
        position: relative;
        left: 30%;
        row-span: 3;
        color: white;
        background-color: #9AE5F8;
    }

    textarea {
        display: block;
        position: relative;
        left: 30%;
        background-color: #9AE5F8;
    }


    input[type="submit"] {
        background-color: forestgreen;
        color: white;
        font-weight: bold;
        border: none;
        padding: 12px;
        cursor: pointer;
        border-radius: 5px;
        transition: background-color 0.3s ease-in-out;
    }
    input[type="submit"]:hover {
        background-color: #0056b3;
    }
    .form-row {
        display: flex; /* Use flexbox for row layout */
        align-items: center; /* Align items vertically */
        margin-bottom: 15px; /* Space between rows */
    }

    .form-row p {
        display: flex; /* Use flexbox for row layout */
        align-items: center; /* Align items vertically */
        margin-bottom: 15px; /* Space between rows */
    }
    input {
        color: white; /* Makes the text inside the input fields white */
        /* background-color: transparent; Optional: makes the background transparent */
        height: 50px; /* Adjust height */
        padding: 10px;
        font-size: 1rem;

        border: 1px solid #ccc;
        border-radius: 5px;
        width: 100%;
    }
    /* Ensure the placeholder text is also visible */
    input::placeholder {
        color: rgba(255, 255, 255, 0.7); /* Light white placeholder */
    }

}
/* ----------   MENU  END   ---------- */



main {

}

.articles {
    display: grid;
    gap: 20px;
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Adds spacing between columns */
    /* grid-template-columns: repeat(4, 1fr);
    gap: 20px; */
    background-color: black;
    color: #fff;
    padding: 20px;
}

.footer-column {
    text-align: left;
    flex: 1; /* Ensures equal width for each column */
    min-width: 200px; /* Ensures columns don’t shrink below this width */
}

.footer-column ul {
    list-style-type: none; /* Removes bullet points */
    padding: 0; /* Removes default padding from the list */
    margin: 0; /* Removes default margin from the list */
}

.footer-column a {
    color: white; /* White text for the links */
    text-decoration: none; /* Removes the underline */
    transition: color 0.3s ease; /* Smooth transition effect */
}

.footer-column a:hover {
    color: green; /* Changes text color to green on hover */
}
