/* style.css */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #111827;
    color: #f3f4f6;
}

a {
    color: #22c55e; 
}
a:hover {
    color: #16a34a;
}

/* CONTAINER */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #22c55e;
    align-items: center;
    display: flex;
    gap: 10px;
}

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

.nav-links a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
        url('img/lat.jpg') center/cover;
}

.hero-logo {
    width: 150px;
    height: auto;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

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

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}



/* BUTTONS */

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: bold;
}

.btn.primary {
    background: #22c55e;
    color: #111827;
}

.btn.primary:hover {
    background: #16a34a;
}

.btn.secondary {
    border: 2px solid white;
    color: white;
}

.btn.secondary:hover {
    background: white;
    color: #111827;
}

/* SECTIONS */

.section {
    padding: 100px 20px;
}

.section.alt {
    background: #1f2937;
}

.section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

/* GRID */

.content-grid,
.contact-grid,
.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.content-grid-large,
.contact-grid-large,
.values-list-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 25px;
}

/* CARDS */

.card,
.contact-card,
.value-item,
.timeline-content,
.join-box {
    background: #111827;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #374151;
    transition: 0.3s;
}

.contact-card img:hover {
    -webkit-transform:scale(1.25); /* Safari and Chrome */
    -moz-transform:scale(1.25); /* Firefox */
    -ms-transform:scale(1.25); /* IE 9 */
    -o-transform:scale(1.25); /* Opera */
     transform:scale(1.25);
}

.card:hover,
.contact-card:hover,
.value-item:hover,
.join-box:hover {
    transform: translateY(-10px);
    border-color: #22c55e;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
}

.card h3,
.contact-card h3,
.value-item h3 {
    margin-bottom: 15px;
    color: #22c55e;
}

/* TIMELINE */

.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
}

.timeline-date {
    font-weight: bold;
    color: #22c55e;
}

/* JOIN */

.join-box {
    text-align: center;
}

.join-box p {
    margin-bottom: 25px;
}

/* FOOTER */

.footer {
    background: #0b1120;
    padding: 30px;
    text-align: center;
    border-top: 1px solid #374151;
}

/* RESPONSIVE */

@media (max-width: 1060px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        right: 20px;
        background: #1f2937;
        flex-direction: column;
        padding: 20px;
        border-radius: 10px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }
}