/* landing.css */
/*  last edited by Jose on 4/1/26 */

body {
    margin: 0;
    font-family:'Oswald', sans-serif;
    background-color: #F5F7FA;
    color: #0B2A4A;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 5px;
    background-color: #0B2A4A;
    color: white;
    z-index: 1000;
	
}

.logo-center {
	font-family: "Futura Condensed", "Oswald", sans-serif;
	font-weight: 200;
	text-transform: uppercase;
	color: white;
	font-size: 2rem;
	justify-content: center;
	display: flex;
	letter-spacing: 3px;

}

@font-face {
    font-family: "Futura Condensed";
    src: url("/static/fonts/futuracondensed.woff2") format("woff2"),
         url("/static/fonts/futuracondensed.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.navbar a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
	
}

.btn-login {
    padding: 6px 9px;
	position: absolute;
    right: 40px;
    background: #2DAAE1;
    border-radius: 8px;
    color: white;
    text-decoration: none;

}

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.hero h1 {
    font-family:'Oswald', sans-serif;
    font-size: 3rem;
}

.generation {
    padding: 80px 40px;
    background-color: #F5F7FA;
}

.generation-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.generation-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.generation-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    
    padding: 30px;
    color: white;

    background: linear-gradient(
        to top,
        rgba(11, 42, 74, 0.9),
        rgba(11, 42, 74, 0.4),
        transparent
    );
}

.generation-overlay h2 {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
}

.generation-overlay p {
    margin-top: 10px;
    font-size: 1rem;
}


.btn-primary {
    background-color: #2DAAE1;
    padding: 12px 20px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.section {
    padding: 80px 40px;
    text-align: center;
}

.section.alt {
    background-color: white;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 200px;
}

.social-links a {
    margin: 0 10px;
    color: #1F4E79;
    text-decoration: none;
    font-weight: bold;
}

.cta {
    background-color: #1F4E79;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.footer {
    background-color: #0B2A4A;
    color: white;
    text-align: center;
    padding: 30px;
}

.linktree {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.linktree a {
    color: #2DAAE1;
    text-decoration: none;
}

@media (max-width: 768px) {
    .cards {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2rem;
    }

	.generation-img {
			height: 350px;
		}

		.generation-overlay h2 {
		font-size: 1.5rem;
		}
}
