/* -------- GLOBAL -------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #ffe6f0;
    /* soft pink background */
    color: #222;
}

/* -------- NAVBAR / HEADER -------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    justify-content: flex-end;
    /* aligns nav to the right */
    padding: 16px 40px;
    /* spacing from edges */
    background: rgba(255, 255, 255, 0.35);
    /* frosted glass */
    backdrop-filter: blur(10px);
    /* glassy effect */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-family: 'Italiana', serif;
    /* apply Italiana font */
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 16px;
    /* spacing between links */
    padding: 0;
    margin: 0;
}

.nav-list li {
    display: flex;
}

/* Rounded pill/circle links */
.menu {
    padding: 10px 22px;
    border-radius: 999px;
    /* fully rounded */
    background: var(--accent);
    /* your accent color */
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Italiana', serif;
    
}

.menu:hover,
.nav-list li.active .menu {
    background: #ff66b2;
    /* lighter pink on hover/active */
    transform: translateY(-2px);
}
/* -------- MAIN CONTAINER -------- */
.container {
    width: 80%;
    margin: auto;
    padding: 50px 0;
}

/* -------- INTRO -------- */
.intro h1 {
    font-size: 50px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    line-height: 1.2;

    /* Subtle gradient text for elegance */
    background: linear-gradient(135deg, #ff3399, #ff3399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.intro h1:hover {
    transform: scale(1.02);
}

/* -------- PROJECT CARDS -------- */
.project-card {
    display: flex;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.project-card img {
    width: 45%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    display: block;
    margin: 120px auto 0 auto;
}

.project-card .project-text {
    width: 50%;
}

.project-card .project-text h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #ff3399;
}

.project-card .project-text h2 a {
    color: #ff3399;
    text-decoration: none;
    border-bottom: 2px solid #ff3399;
    padding-bottom: 2px;
    transition: border-color 0.3s;
}

.project-card .project-text h2 a:hover {
    border-color: #ff1a75;
}

.project-card .project-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.project-card .project-text .project-info {
    background: #ffe6f2;
    padding: 15px;
    border-radius: 15px;
    border-left: 4px solid #ff3399;
}

.project-card .project-text .project-info h3 {
    font-size: 16px;
    color: #cc0066;
    margin-bottom: 8px;
}

/* -------- FOOTER -------- */
.site-footer {
    text-align: center;
    padding: 20px;
    background: #ff4da6;
    color: white;
    margin-top: 60px;
    font-size: 14px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 900px) {
    .project-card {
        flex-direction: column;
        align-items: center;
    }

    .project-card img,
    .project-card .project-text {
        width: 90%;
    }

    .site-header {
        justify-content: center;
        padding: 16px 20px;
    }

    .nav-list {
        gap: 12px;
    }

    .nav__link {
        padding: 8px 16px;
        font-size: 14px;
    }
}