/* Custom styles here */
html {
    position: absolute;
    min-height: 100%;
    min-width: 100%;
}

body {
    background-color: #fff; /* Pastel green background */
    height: fit-content;
    padding-bottom: 350px;
}
.navbar {
    background-color: #66cdaa; /* Pastel green navbar */
}


.navbar-brand {
    color: #fff; /* White text for brand */
    padding-left: 0;
    padding-right: 0;
    margin-right: 0;
}
.navbar-nav {
    margin: 0 auto;
    /*padding-left: 90px;
    --parent-margin: inherit;
    margin-left: calc(var(--parent-margin) - 2040px);
    margin-right: var(--parent-margin);*/
}
.nav-link {
    color: #fff; /* White text for links */
}
.dropdown-menu {
    background-color: #66cdaa; /* Pastel green dropdown */
}
.dropdown-item {
    color: #fff; /* White text for dropdown items */
}
footer {
    background-color: #66cdaa; /* Pastel green footer */
    color: #fff; /* White text for footer */
    text-align: center;
    padding: 20px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}



#sage-logo{
    height: 50px;
    padding: 0;
    margin: 0 auto;
}

#navbar-container{
    /*margin-left: 40px;
    margin-bottom: 0;
    padding-bottom: 0;
    */
}

.scroll-watcher{
    height: 10px;
    position: fixed;
    top: 0;
    z-index: 1000;
    background-color: #333;
    width: 100%;
    scale: 0 1;
    transform-origin: left;

    animation: scroll-watcher linear;
    animation-timeline: scroll();
}

@keyframes scroll-watcher {
    to {scale: 1 1;}
}


.square-container{
    padding-top: 75px;
    display: flex;
    min-width: fit-content;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.square{
    min-height: fit-content;
    border: 3px solid rgba(0, 0, 0, 0.3);
    height: 300px;
    width: 500px;
    margin: 0 10px 0 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    padding: 25px;
    align-items: center;
}

.rectangle-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 25px;
}

.rectangle{
    min-height: fit-content;
    border: 3px solid rgba(0, 0, 0, 0.3);
    height: 300px;
    width: 1020px;
    margin: 55px 10px 0 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    padding: 25px;
    align-items: center;
}

.square-text{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
    text-align: center;
    max-width: 260px;
    padding-left: 20px;
}

.rectangle-text{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
    text-align: left;
    max-width: 650px;
    padding-left: 50px;
}

.square-img{
    width: 175px;
    height: 175px;
}

.rect-img{
    width: 225px;
    height: 225px;
}

.grey-text{
    color: rgba(122, 119, 119, 0.95);
}

#bottom-get-started{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#bottom-btn{
    background-color: #52b468;
    color: #FFFFFF;
}

#rocket-img{
    width: 250px;
    height: 250px;
    margin-bottom: 20px;
}


/*Different screen widths*/
@media screen and (max-width: 1000px){
    .rectangle{
        width: 600px;
    }
    body{
        padding-bottom: 800px;
    }

}

@media screen and (max-width: 900px){
    .rectangle{
        width: 500px;
    }
    .square-container{
        flex-direction: column;
        padding-top: 300px;
        padding-bottom: 203px;
    }
    .rect-img{
        width: 150px;
        height: 150px;
    }

}


/*Social Media Marketing*/
@media screen and (min-width: 1150px){
    #our-strategy-container-soc{
        padding-left: 100px;
    }
    #custom-software-image{
        max-height: 800px;
    }
    #web-design-image{
        max-height: 400px;
        padding-left: 80px;
    }
}

@media screen and (min-width: 1400px){
    #web-design-image{
        max-height: 400px;
        padding-left: 120px;
    }
}

/*fonts*/

.ubuntu-medium {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-style: normal;
}