.hollowText {
    -webkit-text-stroke: 1px black;
    color: #ffffff00;
}

.gradientText {
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


body {
    line-height: 1.6;
    color: var(--color-neutral);
    background-color: var(--color-background);
}

header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
    padding: 20px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid var(--color-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 24px;
    color: var(--color-secondary);
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--color-neutral);
    font-weight: 500;
}

nav a:hover {
    color: var(--color-secondary);
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(20, 40, 30, 0.9), rgba(20, 40, 30, 0.9)), 
                url('../static/images/cover.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    color: white;
    padding: 0 20px;
    background-color: var(--color-dark);
    line-height: 1.2
}

.hero h2 {
    /* font-size: 48px; */
    font-size: 80px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    z-index: 100;
}

.hero h3 {
    font-size: 24px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    z-index: 100;
}
.hero a {
    z-index: 100;
}

.xray-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.xray-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;

    --x: 50%;
    --y: 50%;

    mask-image: radial-gradient(circle 200px at var(--x) var(--y), white 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle 200px at var(--x) var(--y), white 0%, transparent 100%);
}


.button {
    background: var(--color-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 20px;
}

.button:hover {
    background: var(--color-secondary);
}

section {
    padding: 60px 40px;
    max-width: 1000px;
    margin: 20px auto;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-size: 18px;
    list-style-position: inside;
}

section h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

footer {
    padding: 30px;
    text-align: center;
    background: var(--color-light);
    color: var(--color-neutral);
}

@media (max-width: 768px) {
    .xray-image {
        display: none;
    }

    header {
        padding: 15px 20px;
        align-items: center;
    }

    header h1 {
        font-size: 20px;
    }

    nav a {
        margin-left: 0;
        margin-right: 15px;
        font-size: 14px;
    }

    nav a:nth-child(1),
    nav a:nth-child(2) {
        display: none;
    }

    nav a:nth-child(3) {
        border: 2px solid var(--color-primary);
        padding: 5px 10px;
        border-radius: 5px;
    }

    .hero,
    .xray-wrapper {
        height: 50vh;
    }

    .hero h2 {
        font-size: 30px;
    }

    .hero h3 {
        font-size: 16px;
    }

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

    section {
        padding: 30px 20px;
        font-size: 14px;
    }
    section h3 {
        font-size: 24px;
    }
}
