/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
        Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #373a45;
    position: relative;
}

body.drawer-open {
    overflow: hidden;
}

html {
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    border-bottom: 1px solid rgba(233, 236, 239, 0.3);
    padding: 1rem 0;
    position: relative;
    z-index: 10;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Main content */
main {
    min-height: calc(100vh - 200px);
    position: relative;
    z-index: 1;
}

.hero {
    padding: 2.5rem 0;
    text-align: center;
    color: white;
    position: relative;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero p {
    font-size: 1rem;
    opacity: 0.9;
}

.hero .intro-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem !important;
    line-height: 1.6;
    margin: 1rem 0 2rem 0;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.hero .secret-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem !important;
    line-height: 1.6;
    margin: 1rem 0 2rem 0;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}
/* Personal links */
.personal-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 1rem 0 2rem 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.personal-link:hover {
    background: rgba(255, 255, 255, 0.4);
    color: white;
    transform: translateY(2px);
}

.github-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Footer */
footer {
    background-color: #343a40;
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: auto;
    box-shadow: 0 50vh 0 50vh #343a40;
}

footer p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.vanilla-js-link {
    display: inline-block;
    transition: transform 0.2s ease;
}

.vanilla-js-link:hover {
    transform: scale(1.1);
}

.vanilla-js-link img {
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
