@charset "UTF-8";
/* CSS Document */
/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
}


/* Welcome Section */
.welcome {
    background-image: url('images/main.jpg'); /* Full bleed background image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

.welcome-content {
    max-width: 600px;
    padding: 30px;
    z-index: 1; /* Ensures text content is above the logo */
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent black background */
    border-radius: 10px; /* Rounded corners for a softer look */
}

.welcome h1, .welcome p, .welcome .btn {
    color: white; /* Ensures text is readable */
}

.welcome .logo {
    width: 250px; /* Smaller logo size */
    height: auto;
    position: absolute;
    top: 40px;
    left: 40px;
}

.welcome h1 {
    font-size: 3.5rem;
    margin-bottom: 40px;
    margin-top: 0px; /* Adjust this value to move the headline down */
}

.welcome p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.welcome .btn {
    background-color: #a2c6e1;
    color: black;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
}

.welcome .btn:hover {
    background-color: #0e406a;
    color: #ffffff; /* Ensure text remains readable */
}

/* About Section */
.about {
    padding: 50px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about {
    padding: 50px 20px;
    background-color: #a2c6e1;
    text-align: center;
    color: #0e406a;
    min-height: 400px;  /* Ensures the section is at least 600px tall */
}


/* Contact Section */
.contact {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact .btn {
    background-color: #a2c6e1; /* New background color */
    color: black;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
}
.contact .btn:hover {
    background-color: #0e406a;
    color: #ffffff; /* Ensure text remains readable */
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome h1 {
        font-size: 2.5rem;
    }

    .welcome p {
        font-size: 1rem;
    }

    .about h2 {
        font-size: 2rem;
    }

    .contact h2 {
        font-size: 2rem;
    }
}
/* Footer Section */
.footer {
    background-color: #0e406a;  /* Dark color for the footer */
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer p {
    font-size: 1rem;
    margin: 0;
}
