/* Landing page styling */
html, body {
    height: 100%;
    margin: 0;
}

.landing-page {
    background-image: url('/static/css/photos/base_background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content-section {
min-height: 100vh;
background-color: rgb(65, 62, 62);
}

.Info1 {
    color: #333; 
    font-size: 30px; 
    text-align: center; 
    padding: 20px; 
    margin-top: 50px; 
}

.content-section {
    min-height: 50vh; 
    background-color: #f8f8f8; 
    display: flex;
    justify-content: center; 
    align-items: center;
    padding: 50px; 
}

.content-image {
    max-height: 600px; 
    height: auto;
    width: 370px; 
    display: block;
    margin: 0 auto;
}
.image-container {
    flex-basis: 50%; 
    text-align: left; 
}

.togethr-text {
    color: white; 
    font-weight: bold; 
    font-size: 85px; 
    position: absolute; 
    top: 25%; 
    left: 13%; 
}

.slogan {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    margin: 5;
}

.left-slogan {
    position: absolute;
    top: 50%; 
    left: 13%; 
    color: rgb(65, 62, 62);
}

.right-slogan {
    position: absolute;
    top: 55%; 
    right: 63%; 
    color: white;
    font-weight: bold;
}

.left-brand-logo img {
    width: 415px;
    height: 140px;
    size: fixed;
}

/* Login styling */

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.login-image img {
    width: 100%; 
    height: auto; 
    object-fit: cover; 
}
.login-image {
    width: 100%; 
    height: auto; 
    overflow: hidden; 
}

.login-form-container {
    flex-basis: 50%; 
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.back-home {
    margin-bottom: 1rem;
    
}

h1 {
    font-weight: bold;
}


/* Timeline styling */

.timeline-body {
    background-color: #f4f7f6;
    min-height: 100vh;
    width: 70em;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center; 
    padding: 20px;
    border-radius: 60px;
}


.post-textarea {
    height: 80px;
    border-radius: 15px; 
    border: 1px solid #ccc; 
    padding: 8px; 
}

.rounded {
    height: 40px;
    border-radius: 15px; 
    border: 1px solid #ccc; 
    padding: 8px; 
    margin-top: 250px;
}


.timeline-content-section, .post {
    background-color: #f8f8f8; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    margin-bottom: 5px;
    padding: 7px;
    width: 70em;
    max-width: 600px;
    border: 4px;
}

.post-form {
    display: flex;
    flex-direction: column;
}


.post-form textarea {
    margin: 10px 50px; 
}

.post-button {
    align-self: center; 
    padding: 10px 20px;
    background-color: #6aa9ec; 
    color: white;
    width: 30%;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 60px;
}

.post-button:hover {
    background-color: #0056b3; 
}

.post {
    background-color: #f8f8f8; 
    border: 1px solid #ddd;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 15px;
    margin-top: 50px;
    width: 700px;
}

.posts {
    margin-top: 20px;
}

.post-button:hover {
    opacity: 0.8;
}


/* Nav bar styling */


.navbar-right {
    position: fixed;
    top: 50%;
    right: 5em;
    transform: translateY(-50%);
    padding: 20px;
    font-size: 14px;
    z-index: 1000;
}

.nav.flex-column {
    list-style: none;
    padding: 0;
    margin: 0;
    }

.nav-item {
    margin-bottom: 10px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgb(117, 117, 117);
    background-color: white;
    }   

.nav-item-logout {
    margin-top: 30px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid rgb(117, 117, 117);
    background-color: white;
    }
    
.nav-link {
    text-decoration: none;
    font-weight: bold;
    }

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.post-form textarea {
    width: 80%;
}
