/* GLOBAL */
body {
    margin: 0;
    background: #f7f5f0;
    font-family: "Poppins", sans-serif;
}

#stage {
    width: 1280px;
    height: 720px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    background: white;
    border-left: 5px solid #d4af37;
    border-right: 5px solid #d4af37;
}

/* NAVIGATION */
nav {
    width: 100%;
    height: 70px;
    background: #0e5d4f;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav li {
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

nav li:hover {
    color: #d4af37;
}

/* SECTIONS */
.section {
    width: 100%;
    height: 100%;
    padding: 120px 50px;
    display: none;
}

.section.active {
    display: block;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
}

/* HERO SECTION */
.hero {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.title-animate {
    font-size: 60px;
    font-weight: bold;
    color: #0e5d4f;
    opacity: 0;
    animation: slideDown 1.2s ease forwards;
}

.subtitle-animate {
    font-size: 24px;
    margin-top: 10px;
    opacity: 0;
    color: #444;
    animation: fadeIn 2s ease forwards 0.8s;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}


/* PROJECT GRID */
.project-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.project-card {
    width: 220px;
    text-align: center;
    transition: 0.3s;
}

.project-card img {
    width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #d4af37;
    transition: 0.3s;
}

.project-card:hover img {
    transform: scale(1.05);
}


/* VIDEO GRID */
.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

video {
    width: 250px;
    height: 140px;
    background: black;
    border-radius: 10px;
}