/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    background-color: #333;
    color: white;
    width: 250px;
    padding-top: 20px;
    position: fixed;
    height: 100%;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    padding: 15px 20px;
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
}

.sidebar ul li a:hover {
    background-color: #575757;
    padding-left: 10px;
    transition: all 0.3s ease;
}

/* Main Content Styles */
.main-content {
    margin-left: 250px;
    padding: 40px;
    background-color: #f9f9f9;
    flex-grow: 1;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 32px;
    color: #333;
}

header .logo {
    width: 250px;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}
.construction-message {
    font-size: 24px;
    color: #ff0000;
    margin-top: 40px;
}

ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

ul li {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

/* Project Overview */
.project-overview {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.project-overview h2 {
    font-size: 24px;
    margin-top: 30px;
    color: #333;
}

.project-overview p {
    font-size: 18px;
    margin-bottom: 20px;
}

.project-overview a {
    color: #1e90ff;
    text-decoration: none;
}

.project-overview a:hover {
    text-decoration: underline;
}

/* Project Requirements */
.requirements-section {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Project Technology */
.technology-section {
	text-align: left;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.spaced-footer {
    width: 100%; 
    padding: 20px 0;
    text-align: center;
    /* background-color: #f8f9fa; */
    border-top: 1px solid #e7e7e7;
    position: relative; 
    left: 0;
}

#project-header {
    margin: 50px;
    margin-top: 70px;
}

/* Team Section */
.team-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member {
    text-align: center;
    margin: 15px;
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Team Roles Section */
.team-roles {
    text-align: left;
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    border-radius: 8px;
}

.team-roles h2 {
    font-size: 26px;
    color: #333;
    margin-bottom: 20px;
}

.team-role h3 {
    font-size: 22px;
    color: #1e90ff;
    margin-top: 15px;
    margin-bottom: 5px;
}

.team-role p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

ul li {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

/* Link Styles */
a {
    text-decoration: none;
    color: #1e90ff;
}

a:hover {
    text-decoration: underline;
}
/* Sponsor Section Styles */
.sponsor-info {
    padding: 20px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 10px;
    max-width: 600px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    background-color: transparent;
    box-shadow: none;
}

.sponsor-info h2 {
    font-size: 26px;
    color: #333;
    margin-bottom: 20px;
}

.sponsor-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sponsor-name {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.sponsor-title {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.sponsor-info a {
    font-size: 18px;
    color: #1e90ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sponsor-info a:hover {
    color: #ff6347;
    text-decoration: underline;
}

.DocButton {
    appearance: none;
    background-color: #FAFBFC;
    border: 1px solid rgba(27, 31, 35, 0.15);
    border-radius: 6px;
    box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
    box-sizing: border-box;
    color: #24292E;
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 12px 16px;
    flex-shrink: 0; /* Prevent button from shrinking too much */
    max-width: 200px; /* Set max width to prevent button from growing too large */
    min-width: 150px; /* Set a minimum width to prevent it from shrinking too much */
    margin-right: 10px;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
}

.preview-iframe {
    flex-grow: 1;
    flex-shrink: 0; /* Prevent iframe from shrinking too much */
    width: 100%; /* Make the iframe responsive */
    max-width: 400px; /* Set a maximum width for the iframe */
    min-width: 250px; /* Set a minimum width to prevent it from shrinking too much */
    height: 200px; /* Fixed height */
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.button-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px; /* Space between grid items */
    margin-top: 20px;
}

.button-preview {
    display: flex;
    flex-direction: column; /* Stack the button and iframe */
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    background-color: #fff;
}

@media (min-width: 600px) {
    .button-preview {
        flex-basis: 100%; /* On small screens, each button-preview pair takes full width */
    }
}

@media (min-width: 768px) {
    .button-preview {
        flex-basis: 48%; /* On medium screens, each button-preview pair takes about half the row */
    }
}

@media (min-width: 1024px) {
    .button-preview {
        flex-basis: 32%; /* On large screens, each button-preview pair takes about a third of the row */
    }
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}
.docs-section {
    margin-top: 20px;
}
.docs-section ul {
    list-style-type: none;
    padding: 0;
}
.docs-section li {
    margin-bottom: 10px;
}
.docs-section a {
    text-decoration: none;
    color: #007BFF;
}
.docs-section a:hover {
    text-decoration: underline;
}
/* Center the video section */
#elevator-pitch {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 10px 0;
}

/* Style the video */
#elevator-pitch video {
    width: 80%; /* Adjust to desired width */
    max-width: 800px; /* Maximum width for larger screens */
    height: auto; /* Maintain aspect ratio */
}

/* Style the heading */
#elevator-pitch h2 {
    font-size: 2em;
}
