:root {
    --primary: #151618;
    --secondary: #1e1f23;
    --accent: #4f46e5;
    --text: #e2e2e2;
    --text-secondary: #9ca3af;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background: url('../css/images/boost-dev-bkgd.png') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    min-height: 100vh; /* Use min-height instead of height */
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text);
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay with 60% opacity */
    z-index: -1; /* Ensure it stays behind the content */
    pointer-events: none;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1.5rem 2rem;
    z-index: 10;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem; /* Add padding for spacing */
    flex-grow: 1; /* Allow the container to grow with the content */
    padding-top: 0rem; /* Reduce the padding at the top of the container */
}

.content-container h1 {
    font-size: 3rem; /* Keep the text larger */
    text-align: center; /* Center the text horizontally */
    margin: 1rem 0; /* Add spacing above and below */
    font-weight: bold; /* Keep the text bold */
    color: #ffffff; /* Set the text color to white */
    margin-top: -92px; /* Remove any default margin above the heading */
}

.content-container .tagline {
    font-size: 1.25rem; /* Keep the tagline font size */
    color: #ffffff; /* Set the text color to white */
    text-align: center; /* Center-align the tagline */
    margin-bottom: 3rem; /* Add spacing below the tagline */
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.auth-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
}

.btn-primary:hover {
    background-color: #4338ca;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text);
    border: 1px solid var(--text-secondary);
}

.btn-secondary:hover {
    border-color: var(--text);
}

.btn-half {
    font-size: 0.75rem; /* Smaller font size */
    padding: 0.25rem 0.5rem; /* Smaller padding */
    width: 50%; /* Make the button half the size */
    text-align: center; /* Center the text inside the button */
    display: inline-block; /* Ensure proper alignment */
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text-secondary);
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--text-secondary);
}

.divider::before {
    margin-right: 1rem;
}

.divider::after {
    margin-left: 1rem;
}

.social-login {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 1rem; /* Space between buttons */
    justify-items: center; /* Center items horizontally */
    margin-top: 1rem;
}

.social-login a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    width: 100%; /* Ensure buttons are consistent in size */
    max-width: 200px; /* Optional: Limit button width */
}

.btn-social {
    background-color: #4267B2; /* Default for Facebook/LinkedIn */
}

.btn-social:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-github {
    background-color: #333;
}

.btn-github:hover {
    background-color: #1b1f23;
}

.btn-google {
    background-color: #db4437;
}

.btn-google:hover {
    background-color: #f1f1f1;
}

.social-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer {
    padding: 1.5rem 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a {
    color: var(--text-secondary);
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--text);
}

/* Dashboard styles */
.dashboard-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.profile-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--secondary);
    border: 1px solid var(--text-secondary);
    border-radius: 8px;
    color: var(--text);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.imposter-syndrome-section {
    text-align: center; /* Center the heading */
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px; /* Optional: Limit the section width */
    background-color: var(--secondary); /* Optional: Add a background color */
    color: var(--text);
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

.imposter-syndrome-content {
    display: flex;
    flex-direction: row; /* Align text and image in a row */
    justify-content: space-between; /* Add space between text and image */
    align-items: center; /* Align items vertically */
    gap: 2rem; /* Add spacing between text and image */
    width: 100%;
}

.imposter-text {
    flex: 1; /* Allow the text to take up available space */
    text-align: justify; /* Justify the text */
    font-size: 1rem; /* Optional: Adjust the font size */
    line-height: 1.6; /* Optional: Improve readability with line height */
    color: var(--text-color, #ffffff); /* Optional: Set a default text color */
}

.imposter-image {
    flex: 1; /* Allow the image to take up available space */
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center; /* Center the image vertically */
}

.imposter-image img {
    max-width: 100%; /* Ensure the image is responsive */
    height: auto; /* Maintain the aspect ratio */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

.imposter-syndrome-section h2 {
    color: #ffffff; /* Set the text color to white */
    font-size: 2rem; /* Optional: Adjust the font size */
    text-align: center; /* Optional: Center the heading */
    margin-bottom: 1rem; /* Optional: Add spacing below the heading */
    font-weight: bold; /* Optional: Make the text bold */
}

.imposter-syndrome-section p {
    font-size: 1rem;
    line-height: 1.6;
}

.image-gallery-section {
    margin-top: 2rem;
    padding: 1rem;
    text-align: center;
    background-color: var(--secondary); /* Optional: Add a background color */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

.image-gallery-section h2 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.image-gallery {
    display: flex;
    justify-content: center;
    gap: 1.5rem; /* Space between images */
}

.image-gallery img {
    width: 350px; /* Set a fixed width for all images */
    height: 350px; /* Set a fixed height for all images */
    object-fit: fill; /* Ensure the images maintain their aspect ratio */
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

.dynamic-color {
    animation: color-change 3s infinite; /* Apply the animation */
    font-weight: bold; /* Optional: Make the word bold */
}

/* Define the animation */
@keyframes color-change {
    0% {
        color: #ff7e5f; /* Start with a warm color */
    }
    25% {
        color: #feb47b; /* Transition to a lighter shade */
    }
    50% {
        color: #0088cc; /* Transition to a cool blue */
    }
    75% {
        color: #581CA0; /* Transition to purple */
    }
    100% {
        color: #ff7e5f; /* Loop back to the starting color */
    }
}

/* Media Queries */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
}