:root {
    --bg-color: #051620;
    --text-main: #ffffff;
    --text-muted: #aaaaaa;
    --text-quote: #cccccc;
    --accent-color: #88aacc;
    --accent-hover: #bbddff;
    --container-max: 600px;
    --transition: all 0.3s ease;
}

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

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    gap: 1.5rem;
    overflow: hidden;
}

/* Image Wrapper */
.image-wrapper {
    max-width: 400px;
    max-height: 40vh;
    width: 100%;
    animation: fadeIn 1.2s ease-out forwards;
    transition: var(--transition);
    display: flex;
    justify-content: center;
}

.image-wrapper:hover {
    transform: scale(1.02);
}

.image-wrapper img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Content Container */
.content {
    text-align: center;
    animation: fadeIn 1.2s ease-out 0.3s forwards;
    opacity: 0;
    max-width: var(--container-max);
}

/* Typography */
h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 10vw, 4rem);
    font-weight: 400;
    letter-spacing: 5px;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.description {
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-muted);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

a:hover {
    color: var(--accent-hover);
    border-bottom-color: var(--accent-hover);
}

.quote {
    font-style: italic;
    color: var(--text-quote);
    margin-top: 1.5rem;
    display: block;
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 1rem;
        gap: 2rem;
    }
    
    .image-wrapper {
        max-width: 100%;
        max-height: 35vh;
    }

    h1 {
        margin-bottom: 1.5rem;
    }

    p {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
}

