:root {
    --primary-color: #D27B40;
    /* Wood Orange/Brown */
    --secondary-color: #1a1a1a;
    /* Dark Gray / Obsidian */
    --text-white: #ffffff;
    --accent-gold: #FFD28E;
    --font-family: 'Nunito', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--secondary-color);
    color: var(--text-white);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Background using the provided image */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        /* Dark overlay for readability */
        url('z7655760833598_a3a7f00ca0a7bc7cc07255092610099e.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Glassmorphism effect container */
.container {
    padding: 3rem;
    max-width: 800px;
    text-align: center;
}

.content {
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

.subtitle {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.title-wrapper {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.typing-text {
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    border-right: none;
    animation: typing 3s steps(11, end) forwards;
}

.cursor {
    font-weight: 200;
    color: var(--primary-color);
    animation: blink 1s step-end infinite;
}

.description {
    font-weight: 300;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Animations */
@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink {

    from,
    to {
        opacity: 0
    }

    50% {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Responsive Design Enhancements */
@media (max-width: 1024px) {
    .title-wrapper {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .title-wrapper {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.3rem;
        margin-bottom: 1rem;
    }

    .container {
        padding: 2rem;
    }

    .description {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .title-wrapper {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }

    .subtitle {
        font-size: 0.8rem;
        letter-spacing: 0.2rem;
    }

    .container {
        padding: 1.5rem;
    }

    .description {
        font-size: 0.9rem;
    }
}