@font-face {
    font-family: 'militech';
    src:url(fonts/militech.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}
:root {
    --primary-green: #80b44d; /* Define the color variable */
    --hover-green: #76a547;
}
body {
    font-family: 'militech' , sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    text-align: center;
    color: #000000;
}

.header{
    display: grid;
    grid-template-columns: 125px 1fr;"
}

.header-img {
    background-color: white;
    align-content: center;
}
.headertitle {
    background-color: white;
    align-content: center;

}

.navbar {
    display: flex;
    justify-content: center;
    background: var(--primary-green);
    flex-wrap: wrap;
}
.navbar a {
    color: white;
    justify-content: center;
    padding: 10px 51px;
    text-decoration: none;
    font-family: 'militech' , sans-serif;
    font-size: 25px;
    transition: background-color 1s;
}
.navbar a:hover {
    background: var(--hover-green);
}


.container {
   display: block;
    flex-direction: column;
    justify-content: center; /* Centers content vertically */
    align-items: center; /* Centers content horizontally */
    text-align: center;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    min-height: calc(100vh - 120px); /* Makes it take full page height minus navbar/footer */
}

h1 {

    font-size: 38px;
    color: #000000;
}
h2 {
    font-size: 33px;
    letter-spacing: 2px;
}
h3 {
    letter-spacing: 2px;
}
p{
    font-family: sans-serif;
}
hr{
    width: 70% ;
    border: none;
    height:2px;
    background: #00000063;
    margin: 12px auto;
}

.description, .authors, .committee, .advisors {
    padding: 1px;
    margin: 1px;   
}


/* Author Container (Flexbox Layout) */
.card-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between cards */
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

/* Individual Author Cards */
.card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 250px; /* Set a fixed width */
}

/* Author Name */
.card h3 {
    margin: 10px 0;
    font-size: 20px;
}

/* Author Major */
.card p {
    font-size: 16px;
    color: #555;
}

/* Button Styling */
.button {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 10px 64px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

/* Hover Effect */
.button:hover {
    background: var(--hover-green); /* Darker shade for hover effect */
}

/* PDF Container Styling */
.pdfContainer {
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
    text-align: center; /* Centers the PDF preview */
    margin: 20px auto;
}

/* Styling for the PDF Preview */
.pdfContainer iframe {
    border: 1px solid #ccc; /* Optional border */
    border-radius: 8px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
    width: 75%; /* Adjusts width */
    height: min(80vh, 1000px); /* Responsive height with a max of 1000px */
}


.pdfContainer .button {
    text-decoration: none;
    display: inline-block; /* Ensures button is on a new line */
    text-align: center;
    margin-top: 15px;
    padding: 12px 25px;
}


/* Custom Slides PDF Styling */
.slidesPdfContainer {
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
    text-align: center; /* Centers the PDF preview */
    margin: 20px auto;
}

/* Adjust iframe size for slides */
.slidesPdfContainer iframe {
    border: 1px solid #ccc; /* Optional border */
    border-radius: 8px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
    width: 75%;
    max-width: 720px;
    height: auto;
    aspect-ratio: 16 / 9;

}

/* Reuse button styling */
.slidesPdfContainer .button {
    text-decoration: none;
    display: inline-block; /* Ensures button is on a new line */
    text-align: center;
    margin-top: 15px;
    padding: 12px 25px;
}


.video-section {
    max-width: 720px; /* Match slide max width */
    margin: 20px auto;
    text-align: center;
}

.video-section h2 {
    /*font-size: 24px;*/
    margin-bottom: 10px;
    font-weight: bold;
}

.video-container {
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}





.logo {
    margin-top: 27px;
}
.footer {
   
    padding: 10px;
    background: var(--primary-green);
    color: white;
}
