/* ================= GLOBAL RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(180deg, #0f0f14 0%, #14141c 100%);
    color: #eaeaf0;
}

/* ================= NAVBAR ================= */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(15, 15, 18, 0.9);
    backdrop-filter: blur(10px);
    padding: 14px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.nav-links {
    display: flex;
    gap: 18px;
    flex-wrap: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #caa45c;
    transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ================= CONTAINER ================= */
.container {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 24px;
}

/* ================= INTRO ================= */
.intro h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 24px;
    color: #ffffff;
}

.intro p {
    font-size: clamp(15px, 2.5vw, 17px);
    line-height: 1.8;
    color: #cfcfd6;
    max-width: 850px;
    margin-bottom: 18px;
}

/* ================= HERO IMAGE ================= */
.hero-image {
    margin: 60px 0 40px;
    width: 100%;
    height: clamp(220px, 40vw, 380px);
    border-radius: 18px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.02)
    );
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

/* ================= TABS ================= */
.tabs {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.tab {
    background: linear-gradient(180deg, #1b1b26, #14141c);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px 26px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.tab:hover {
    transform: translateY(-6px);
    border-color: rgba(207,168,92,0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.tab h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.tab p {
    font-size: 14px;
    line-height: 1.6;
    color: #b8b8c2;
}

/* ================= SPACER ================= */
.spacer {
    height: 100px;
}

/* ================= TABLET & MOBILE ================= */
@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 18px;
    }

    .nav-links {
        width: 100%;
        margin-top: 10px;
        flex-wrap: wrap;
        gap: 14px;
    }

    .nav-links a {
        font-size: 14px;
        padding: 6px 0;
    }

    .container {
        margin: 50px auto;
    }

    .hero-image {
        height: clamp(180px, 50vw, 260px);
    }

    .tabs {
        margin-top: 60px;
        gap: 20px;
    }

    .tab {
        padding: 24px 22px;
    }
}

/* ================= SMALL PHONES ================= */
@media (max-width: 420px) {

    .intro h1 {
        font-size: 26px;
    }

    .intro p {
        font-size: 14px;
        line-height: 1.7;
    }

    .nav-links a {
        font-size: 13px;
    }

    .hero-image {
        height: 180px;
    }

    .tab h3 {
        font-size: 16px;
    }

    .tab p {
        font-size: 13px;
    }
}

/* ================= PROJECT INFO ================= */
.project-info {
    margin-top: 90px;
    max-width: 900px;
}

.project-info h2 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 18px;
}

.project-info p {
    font-size: 15px;
    line-height: 1.8;
    color: #cfcfd6;
    margin-bottom: 14px;
}

/* ================= DISCLAIMER ================= */
.disclaimer {
    margin-top: 50px;
    padding: 22px 24px;
    border-left: 3px solid rgba(202,164,92,0.6);
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
}

.disclaimer h3 {
    font-size: 16px;
    font-weight: 600;
    color: #caa45c;
    margin-bottom: 10px;
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: #bfc0c9;
    margin-bottom: 10px;
}
