@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    background-color: #f4f7fa; /* Lighter background for contrast */
    color: #333; /* Dark text for readability */
    font-family: 'Rubik', sans-serif; 
    margin: 0;
    padding: 0;
}

/* Header styling */
header {
    background-image: url("../images/brochure/shutterstock_2547938559.jpg");
    background-size: cover;
    background-position: center;
    min-height: 90vh; /* Full screen height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.nav {
    background-color: rgb(90, 132, 171, 0.9); /* Slightly transparent */
    font-family: 'Oswald', sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

#logo {
    padding: 20px 30px 10px 30px;
    display: block;
}

.SkiBClogo {
    width: 150px; /* Adjusted size for balance */
    display: block;
}

.nav-items {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    margin-right: 30px;
}

.items li {
    list-style: none;
    display: inline-block;
    padding-right: 25px;
}

a {
    color: #fff;
    text-decoration: none;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    padding-right: 35px;
}

a:hover {
    color: rgb(148, 188, 224); /* Hover color change */
}


#slogan {
    font-family: 'Oswald', sans-serif;
    font-size: 80px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 20px #000000;
    margin-top: 100px;
    max-width: 700px;
}

.body-wrapper {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px 40px 5px 40px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

section {
    padding: 5px 60px 40px 60px;
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}

.heading {
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    scroll-margin: 130px;
}

.rubik {
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

ul.rubik li {
    margin-bottom: 10px;
}

.icon {
    width: 25px;
    margin-left: 10px;
    vertical-align: -15%;
}

#email {
    color: #5a84abff;
    font-size: 18px;
    text-decoration: underline;
    margin-right: -35px;
}

#email:hover {
    color: rgb(148, 188, 224);
}

footer {
    background-color: #5a84abff;
    text-align: center;
}

footer a {
    padding-right: 0;
    display: inline-block;
}

#footer {
    display: block;
    margin: auto;
    padding: 25px;
    width: 200px;
}

#TLClogo, #img1, #img2 {
    width: 100%;
    max-width: 450px;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
}

.inner img {
    max-width: 100%;
    height: auto;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    #logo {
        padding: 20px 15px 10px;
    }
    .nav-items {
        flex-direction: column;
        gap: 20px;
    }
    .nav a {
        font-size: 18px;
        padding: 0;
    }

    .body-wrapper {
        margin: 20px;
        padding: 20px;
    }

    .heading {
        font-size: 36px;
    }

    .rubik {
        font-size: 16px;
    }

    #slogan {
        font-size: 50px;
    }

    .SkiBClogo {
        width: 100px;
    }
}
@media (max-width: 420px) {
    .nav-items {
        display: none;
    }
    .body-wrapper {
        margin: 10px;
        padding: 10px;
    }
    section {
        padding: 5px 20px 40px;
    }
}
