/* Layout */
.content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 50px;
}

.text-content {
    flex: 1;
    max-width: 500px;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.main-image {
    width: 40%; /* Image size */
    max-width: 400px; /* Adjust */
    height: auto;
}

body {
    background-image: url('../images/background.png');
    background-size: 55%;  
    background-position: calc(100% - 15%) calc(50% + 10%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}





header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
}

.logo {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 120px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-family: "Lexend", sans-serif; 
    font-size: 1.2rem; 
}
.nav-links a:hover {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
}

.contact-btn {
    background-color: #FFD700;
    color: #333;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: "Lexend", sans-serif; 
    border-radius: 110px;
    transition: box-shadow 0.3s ease;
}
.contact-btn:hover {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); 
}

/* Logo container to hold the logo and text */
.logo-container {
    display: flex;
    align-items: center; 
}

.logo {
    height: 50px; 
}

.logo-text {
    font-family: "Lexend", sans-serif;
    font-size: 1.5rem; 
    font-weight: bold;
    margin-left: 10px; 
    color: #333; 
}

h1 {
    font-size: 5rem;
    color: #3D5AFE;
}

p {
    font-size: 1.2rem;
    margin: 10px 0;
}

/* Get started button */
.primary-btn {
    background-color: #FFD700;
    color: #333;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-family: "Lexend", sans-serif; 
    font-size: 1.2rem;
    border-radius: 110px;
    transition: box-shadow 0.3s ease;
    margin-left: 110px;
    margin-top: 50px;
}

.primary-btn:hover {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); 
}
/* Work with us button */
.secondary-btn {
    background-color: transparent; 
    color: black; 
    padding: 12px 24px; 
    border: none;
    cursor: pointer;
    font-family: "Lexend", sans-serif; 
    font-size: 1.4rem;
    border-radius: 110px;
    transition: box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    margin-left: 10px;
}

/* Arrow styling */
.secondary-btn i {
    margin-left: 10px; 
    font-size: 1.4rem; 
}


.secondary-btn:hover {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
}

/* Optional: Add focus effect */
.secondary-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}


/* Homepage specific styles */
#homepage-h1 .line-one {
    white-space: nowrap; 
    position: relative; 
    top: -80px;
}

#homepage-h1 .line-two {
    display: block; 
    position: relative;
    top: -75px;
    font-size: 5rem; 
    color: #5057d9;
}

#homepage-h1 {
    font-size: 5rem;
    font-family: "Lexend", sans-serif;
    color: #5057d9;
    text-align: left;
    margin-left: 120px;
}

.homepage-p {
    font-size: 1.8rem;  
    color: #333;  
    line-height: 1.6; 
    font-family: "Lexend", sans-serif; 
    margin-top: -110px; 
    text-align: left; 
    margin-left: 120px;
    margin-top: -124px;
}


/* Description on homepage */
.homepage-p2 {
    font-size: 1.3rem;  
    font-family: "Lexend", sans-serif;
    color: #333;  
    line-height: 1.6;  
    margin-top: 35px; 
    text-align: left; 
    margin-left: 120px;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    /* General adjustments */
    body {
        background-size: cover;
        background-position: center;
    }

    header nav {
        flex-direction: column;
        padding: 10px;
    }

    .logo-container {
        justify-content: center;
        margin-bottom: 10px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .contact-btn {
        width: 100%;
        padding: 10px;
        margin-top: 10px;
        border-radius: 20px;
    }

    /* Main content adjustments */
    .content-container {
        flex-direction: column;
        padding: 50px 20px;
    }

    .text-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .image-content {
        justify-content: center;
    }

    .main-image {
        width: 60%;
        max-width: 250px;
    }

    /* Heading and text adjustments */
    #homepage-h1 {
        font-size: 3rem;
        text-align: center;
    }

    #homepage-h1 .line-one {
        top: -20px;
        font-size: 2.5rem;
    }

    #homepage-h1 .line-two {
        top: -20px;
        font-size: 3rem;
    }

    .homepage-p {
        font-size: 1.2rem;
        margin-top: -30px;
        text-align: center;
    }

    .homepage-p2 {
        font-size: 1rem;
        margin-top: 0;
        text-align: center;
    }

    /* Buttons */
    .primary-btn, .secondary-btn {
        width: 100%;
        padding: 10px;
        font-size: 1rem;
        border-radius: 20px;
        margin: 10px 0;
    }
}