:root {
    --bg-color: #f1f6da;
    --secondary-color: #1d2e36;
    --main-color: #6eb440;
    --highlight-color: #853eb4;
    --text-color: #1d2e36;
}

@font-face {
    font-family: 'Mabook';
    src: url('../assets/mabook.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Mabook', 'Comic Sans MS', cursive, sans-serif;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 5px solid var(--main-color);
    border-radius: 0 0 20px 20px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    vertical-align: middle;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: var(--bg-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 15px;
    transition: background-color 0.3s;
}

.nav-menu a:hover {
    background-color: var(--main-color);
    color: var(--secondary-color);
}

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--highlight-color);
    text-shadow: 2px 2px 0px #fff;
    margin-bottom: 40px;
}

/* Hero */
.hero {
    text-align: center;
    padding: 100px 20px;
    background-color: var(--main-color);
    color: var(--bg-color);
    border-radius: 0 0 50px 50px;
    margin-bottom: 40px;
}

.hero h1 {
    color: var(--bg-color);
    font-size: 4rem;
    text-shadow: 4px 4px 0px var(--secondary-color);
}

.hero p {
    font-size: 1.5rem;
    margin-top: 20px;
}

/* About Team */
.about-team {
    background-color: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 3px solid var(--main-color);
}

.team-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-text {
    flex: 1;
    font-size: 1.2rem;
}

.team-image {
    flex: 1;
    text-align: center;
}

.team-image img {
    max-width: 100%;
    border-radius: 20px;
    border: 5px solid var(--highlight-color);
}

/* Current Season */
.season-section {
    background-color: var(--bg-color);
}

.season-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .season-grid {
        grid-template-columns: 1fr;
    }
}

.season-card {
    background-color: #fff;
    border-radius: 30px;
    padding: 30px;
    border: 4px dashed var(--highlight-color);
    text-align: center;
    transition: transform 0.3s;
}

.season-card:hover {
    transform: translateY(-10px);
}

.season-card h3 {
    color: var(--main-color);
    font-size: 2rem;
}

.season-card p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.robot-placeholder, .project-placeholder {
    background-color: #eee;
    height: 200px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--bg-color);
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    border-radius: 20px 20px 0 0;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--highlight-color);
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    border: 3px solid #fff;
    box-shadow: 0 5px 0 var(--secondary-color);
    transition: all 0.1s;
}

.btn:active {
    box-shadow: 0 2px 0 var(--secondary-color);
    transform: translateY(3px);
}
