:root {
    --bg-color: #0a0a0a;
    --text-color: #f5f5f5;
    --accent-color: #6d6d6d;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.hero-image-section {
    width: 100vw;
    height: 70vh;
    position: relative;
    overflow: hidden;
    background-color: #f2eeeb;
    padding-top: 10vh;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    animation: fadeIn 2s ease-out;
}

.content-section {
    padding: 4rem 2rem 8rem 2rem;
    display: flex;
    justify-content: center;
    background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
}

.content-wrapper {
    max-width: 800px;
    text-align: center;
    animation: slideUp 1.5s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experience-text {
    font-size: 1.25rem;
    font-weight: 300;
    color: #cccccc;
    line-height: 1.8;
    text-align: justify;
    text-align-last: center;
    margin-bottom: 1.5rem;
}

.experience-text:last-child {
    margin-bottom: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(1.05); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    .hero-image-section {
        height: 60vh;
    }
    .experience-text {
        text-align: justify;
        text-align-last: left;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    .experience-text {
        font-size: 1.1rem;
        text-align: justify;
        text-align-last: left;
    }
    .hero-image-section {
        height: 55vh;
        padding-top: 0;
    }
    .hero-image {
        object-position: bottom center;
    }
}

.sticky-button-container {
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    pointer-events: none;
}

.glass-button {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .sticky-button-container {
        bottom: 1.5rem;
    }
    .glass-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}
