@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin: 0;
    font-size: 16px;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: #7b2cbf;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.12;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: #e91e63;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.12;
    z-index: -1;
}

.navbar {
    background-color: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 5%;
    position: sticky;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    max-height: 90px;
    width: auto;
    display: block;
}

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

.nav-btn {
    color: #ffffff;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.17s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
}

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

main {
    padding: 0;
    text-align: center;
}

h1 {
    font-size: 2.8rem;
    margin-top: 0;
}

.hero {
    min-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(90deg, #7b2cbf, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    max-width: 650px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.btn-primary {
    background: linear-gradient(90deg, #7b2cbf, #e91e63);
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.17s ease, box-shadow 0.17s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5%;
}

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

.section-text {
    font-size: 1.2rem;
    color: #a0a0a0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.center-btn {
    text-align: center;
    margin-top: 50px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    color: white;
    border: 1px solid rgba(123, 44, 191, 0.4);
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.17s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(233, 30, 99, 0.5);
    transform: translateY(-2px);
}

.news-section {
    background-color: transparent;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(123, 44, 191, 0.5);
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.15);
}

.project-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(233, 30, 99, 0.4);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
}

.news-date {
    font-size: 0.9rem;
    color: #e91e63;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.news-card h3 {
    margin-top: 0;
    font-size: 1.4rem;
}

.news-card p {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.5;
}

.read-more {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 20px;
    transition: color 0.17s ease;
}

.read-more:hover {
    color: #7b2cbf;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.placeholder-img {
    width: 100%;
    height: 220px;
    background: linear-gradient(45deg, #1a1a1a, #262626);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
}

.project-info p {
    margin: 0;
    color: #a0a0a0;
    font-size: 0.95rem;
}

.site-footer {
    background-color: #080808;
    padding: 60px 5% 20px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo-img {
    max-height: 40px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.17s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    color: #555;
    font-size: 0.85rem;
}

.easter-egg {
    opacity: 0.05;
}

@media (max-width: 768px) {
    body::before, body::after {
        width: 350px;
        height: 350px;
        filter: blur(100px);
        opacity: 0.25;
    }

    .container {
        padding: 60px 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        gap: 40px;
        display: none;
    }

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

    .nav-btn {
        background: transparent;
        border: none;
        font-size: 2rem;
        padding: 10px;
        width: auto;
    }

    .nav-btn:hover {
        background: transparent;
        transform: scale(1.05);
        box-shadow: none;
        background: linear-gradient(90deg, #7b2cbf, #e91e63);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .logo {
        max-height: 50px;
    }

    h1 {
        font-size: 2rem;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}