@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/* General styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p {
    font-weight: 400;
    font-family: "proxima-nova", sans-serif;
    font-optical-sizing: auto;
    line-height: 1.4px;
    font-style: normal;
}

h1 {
    font-family: "Playfair Display", serif;
    font-weight: 300;
    font-style: normal;
    margin-bottom: 30px;
    line-height: 1.3;
}

html {
    font-size: 16px; /* Base font size */
}

body {
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    line-height: 1.9;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Header styles */
header {
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0%; /* Increased padding */
    background-color: #fff; /* White background */
    color: #333; /* Adjusted text color for contrast */
    font-family: "proxima-nova", sans-serif;
    width: 100vw;
    left: 0;
    top:0;
    z-index: 1000; /* Ensures the header stays above other content */

}

header .content {
    padding: 0 5%; /* Add padding to the content inside the header */
    width: 100%;
    max-width: 1800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 170px;
}

header nav ul {
    display: flex;
    list-style-type: none;
}

.menu-icon {
    display: none; /* Hidden on larger screens */
    font-size: 30px;
    cursor: pointer;
    color: #1e1f57;
}

header nav ul.active {
    display: block;
}

header nav ul li {
    margin-left: 40px;
    align-self: center; /* Center align the item vertically within its container */
}

header nav ul li a {
    color: #1e1f57; /* Adjusted color for contrast */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    font-size: large;
}

header nav ul li a {
    color: #000000; /* Adjusted color for contrast */
    text-decoration: none;
    font-size: 1rem;
    position: relative; /* For the ::after pseudo-element */
    transition: all 0.3s ease 0s;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px; /* Adjust this for the underline thickness */
    background-color: #1e1f57; /* Same color as in the image */
    left: 0;
    bottom: -5px; /* Adjust to control the gap between text and underline */
    transition: width 0.2s ease;
}

header nav ul li a.active::after {
    width: 100%; /* The underline will appear only on the active link */
}

/* Specific style for the CONTACT US menu item */
.contact-box {
    display: inline-block;
    padding: 20px 40px;
    background-color: #1e1f57;
    text-decoration: none;
    color: #ffffff; /* Text color */
    font-size: 0.90rem;
    font-weight: 600;
    gap: 40px;
}

.contact-box:hover {
    background-color: #1e1f57b9;
}


/* Main content styles */
main {
    padding: 230px 10% 20px; /* Add padding-top to account for header height and some extra space */
    display: flex;
    margin-top: 0; /* Remove margin-top */
    flex-direction: column; /* Arrange content vertically */
    align-items: center; /* Center the image container horizontally */
    justify-content: center; /* Center horizontally */
    text-align: center; /* Center-align text */
    max-width: 100vw;
}

.container {
    max-width: 100%; /* Set a max-width to control the width of the container */
    margin: 0 auto; /* Center container horizontally */
    padding: 7%;
}

.container img {
    width: 100%;               /* Make the image fill the container width */
    max-width: 100vw;           /* Ensure the image doesn’t exceed the container’s width */
    height: auto;              /* Maintain the aspect ratio of the image */
    display: block;  
}

.subtitle {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.9;

}

.image-container {
    display:flex;
    max-width: 300px;
    margin: 0 auto 20px;
    padding: 20px;
    justify-content: center; /* Center horizontally */
}

.image-container img {
    width: 100%;
    border-radius: 10px;
}

.button-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0px;
    margin-top: 0%;
    padding: 0;
}

.app-button {
    display: block;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    color: #fff;
}

.app-button:hover {
    opacity: 0.8;
}




/* Footer styles */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 10%; /* Increased padding */
    background-color: #f0f0f0; /* Light grey background */
    color: #333; /* Adjusted text color for contrast */
    width: 100vw;
    box-sizing: border-box; /* Include padding in width calculation */
    left: 0;
    bottom:0;
    font-weight: 300;
}

/* Responsive styles */
@media (max-width: 576px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 5%;
        justify-content: space-between;
    }

    header nav ul {
        flex-direction: column;
        margin-top: 10px;
        width: 100%;
        text-align: center;
        align-items: center;
        display: none;
    }

    header nav ul.active {
        display: flex; /* Show the menu when toggled */
    }


    header .content {
        flex-direction: column;
        align-items: center; /* Center content in the header */
    }

    header nav ul li {
        margin-left: 0;
        margin-top: 5px;
    }

    header nav ul li a::after {
        display: none;
    }
    
    header .logo img {
        height: 60px;
    }

    .menu-icon {
        display: block; /* Show hamburger icon on smaller screens */
    }
    main {
        padding: 40px;
    }

    .container {
        width: auto;
        padding: 0 3%; /* Optional: Adjust padding for mobile */
        margin: 20px auto; /* Center it on mobile */
    }
    
    .button-container {
        flex-direction: column; /* Stack buttons vertically */
        gap: 5px; /* Increase gap between buttons */
        margin: 0%;
    }
}

@media (max-width: 480px) {
    main {
        padding: 125px 10% 20px; /* Further reduce padding */
    }

    h1 {
        font-size: 1.25rem; /* Adjust font size */
        margin-bottom: 10px;
        line-height: 1;
    }

    .subtitle {
        font-size: 0.75rem; /* Adjust font size */
        margin-bottom: 10px;
    }

    .image-container {
        max-width: 100vw; /* Adjust width for smaller screens */
    }

    .app-button img {
        max-width: 100px; /* Adjust button image size */

    }
    .content {
        flex-direction: column;
        align-items: flex-start;
}
    .button-container {
        flex-direction: column; /* Stack buttons vertically */
        gap: 5px; /* Increase gap between buttons */
        margin: 0%;
        padding: 0;
        }
    }