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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222222;
    background-color: #fffdf7;
}

/* GLOBAL */
a {
    text-decoration: none;
    color: inherit;
}

img,
video {
    display: block;
    max-width: 100%;
}

.section-container {
    width: min(1100px, 90%);
    margin: 0 auto;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    background: rgba(255, 253, 247, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.logo {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.logo span {
    color: #b63344;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.25s ease;
}

.nav a:hover {
    color: #b63344;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 7rem 1.5rem 3rem;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

.hero-content {
    width: min(850px, 100%);
    color: #ffffff;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 720px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btn {
    display: inline-block;
    padding: 0.85rem 1.6rem;
    border: 2px solid #ffffff;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.25s ease;
    margin-bottom: 2rem;
}

.hero-btn:hover {
    background-color: #ffffff;
    color: #111111;
}

.hero-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
}

.hero-icons a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.25s ease;
}

.hero-icons a:hover {
    transform: translateY(-2px);
    border-color: #b63344;
    background-color: #b63344;
}

/* SECTIONS */
.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: #faf7f0;
}

.section h2 {
    font-size: 2rem;
    color: #b63344;
    margin-bottom: 1.5rem;
}

.section p {
    max-width: 800px;
    font-size: 1rem;
    color: #333333;
}

/* EXPERIENCE CARDS */
.card {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.card:last-child {
    border-bottom: none;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: #1f1f1f;
}

.card span {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #777777;
}

/* SKILLS */
.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.skills span {
    padding: 0.7rem 1rem;
    border: 1px solid #b63344;
    border-radius: 999px;
    font-size: 0.95rem;
    color: #b63344;
    background-color: #ffffff;
}

/* FOOTER */
.footer {
    padding: 2rem 5%;
    text-align: center;
    background-color: #f3eee5;
    color: #555555;
    font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .header {
        padding: 1rem 4%;
    }

    .nav {
        gap: 1rem;
    }
}

.linktree-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem 1.25rem;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.9rem 1.2rem;
    }

    .nav a {
        font-size: 0.9rem;
    }

    .hero {
        padding-top: 8.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section h2 {
        font-size: 1.7rem;
    }

    .card h3 {
        font-size: 1.08rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 92vh;
        padding: 8.5rem 1rem 2.5rem;
    }

    .hero-content p {
        margin-bottom: 1.5rem;
    }

    .hero-btn {
        padding: 0.8rem 1.35rem;
        font-size: 0.95rem;
    }

    .hero-icons {
        gap: 0.9rem;
    }

    .hero-icons a {
        width: 40px;
        height: 40px;
    }

    .section p,
    .card p {
        font-size: 0.96rem;
    }

    .skills span {
        font-size: 0.9rem;
    }
}