/* General Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
}


/* Page Layout */
html, body {
    margin: 0; 
    padding: 0; 
    height: 100%; 
}

header {
    position: relative;
    top: 0px;
    left: 0;
    right: 0;
    background-color:black;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 1000; 
    display: flex; 
    justify-content: flex-end; 
}
header a {
    font-size: medium;
    margin: 0 0px; 
    color: white; 
    text-decoration: none; 
    font-weight: 300;
}

header a:hover {
    text-decoration: underline; 
}


/* Home Styles */
.home {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #ffffff;
}

/* Header Styles */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f5f5f5;
    padding: 10px 20px;
    border-bottom: 1px solid #ccc;
}

.logo {
    width: 50px;
    height: auto;
}

.navigation {
    margin-left: auto;
}

.nav-list {
    display: flex;
    list-style-type: none;
}

.nav-link {
    margin-left: 20px;
    text-decoration: none;
    color: black;
}

.nav-link:hover {
    text-decoration: underline;
}

/* Main Container Styles */
.container {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Content Layout */
.content {
    display: flex;
    width: 100%;
}

/* Image Styles */
.img {
    width: 50%;
    height: 100vh;
    object-fit: cover;
}

/* Text Section Styles */
.text-section {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: -30px;
    padding-top: 120px;
    margin-right: 50px;
    
}

/* Title Styles */
.you-help-shape-their {
    width: 100%;
    color: #000000;
    font-size: 75px;
    text-align: right;
    margin-top: 0;
    animation:fadeInRight .4s ease;
}

.text-wrapper-2 {
    font-style: italic;
}

/* Simplify Text Styles */
.simplify {
    width: 100%;
    margin-top: 70px;
    font-family: "Inter-Italic", Helvetica;
    font-weight: 100;
    color: #000000;
    font-size: 24px;
    text-align: right;
    animation:fadeInRight .8s ease;
}



/* Button Styles */
.button-container {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    justify-content: flex-end;
    animation:fadeInRight 1.2s ease;
}
a, button {
    padding: 12px;
    min-width: 24px;
    min-height: 24px;
  }
  
.button {
    padding: 15px 30px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: medium;
    margin-left: 30px;
    min-width: 24px;
    min-height: 24px;
    margin-right: 0px;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 10px 0;
    position: relative; 
    background-color: black;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


.footer-content p {
    margin: 5px 0;
    color: #ffffff;
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
    .text-section {
        margin-top: -60px;
        padding-top: 100px;
        padding: 30px;
    }
    
    .you-help-shape-their {
        font-size: 50px;
    }

    .simplify {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .img {
        width: 100%; 
        height: auto; 
        object-fit: cover; 
    }

    .text-section {
        width: 100%;
        margin-top: 0;
        padding: 20px;
        padding-top: 20px;
    }

    .you-help-shape-their {
        font-size: 40px;
        text-align: center;
    }

    .simplify {
        font-size: 16px;
        text-align: center;
    }

    .button-container {
        justify-content: center;
    }

    .nav-list {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 15px;
    }

    .logo {
        width: 40px;
    }

    .text-section {
        padding: 15px;
    }

    .you-help-shape-their {
        font-size: 30px;
    }

    .simplify {
        font-size: 14px;
        margin-top: 20px;
    }


    .nav-link {
        margin-left: 15px;
        font-size: 14px;
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}