@font-face {
    font-family: "gameriaFont";
    src: url("/static/font/GAMERIA.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

section h2 {
    text-align: center;
}

/* Navbar */
.navbar {
    background-color: #333333;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo {
    color: #FFA500;
    font-size: 2rem;
    font-weight: bold;
    font-family: "gameriaFont";
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FFA500;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(45deg, #ffa60046, #333333e5);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 60px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/image/military-monkey-big.png') center/cover no-repeat;
    filter: blur(8px);
    z-index: -1;
}
.hero-content {
    position: relative;
    z-index: 1;
    height: 85vh;
    line-height: 85vh;
}

.hero-content span {
    display: inline-block;
    vertical-align: middle;
    line-height: 40px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-style: italic;
}

.chevron-bounce{
    text-align: center;
}

.chevron-bounce i {
    color: #ffffff;   
    font-size: 2rem; 
}

/* About section */

#about{
    scroll-margin-top: 20px;
}

#about p{
    text-align: center;
}

/* Team Section */
.team-section {
    padding: 5rem 2rem;
    background-color: #333333;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background-color: #404040;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

/* Social Links */
.social-links {
    padding: 4rem 2rem;
    background-color: #1a1a1a;
}

#social-container{
    display: flex;
    justify-content: center;
}

.social-button {
    background-color: #FFA500;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-button:hover {
    transform: scale(1.05);
}

.social-button a{
    color: #333333;
    text-decoration: noney;
}

footer {
    background-color: #1a1a1a;
    text-align: center;
    padding: 2rem;
    color: #FFA500;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}