:root {
    --iris: #454adeff;
    --space-cadet: #1b1f3bff;
    --electric-purple: #b14aedff;
    --french-mauve: #c874d9ff;
    --fairy-tale: #e1bbc9ff;
    --white: #ffffff;
}

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

html, body {
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--space-cadet);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-transform: lowercase;
}

.nav-links a:hover {
    background: rgba(181, 74, 237, 0.2);
    color: var(--fairy-tale);
}

.main-container {
    height: 100vh;
    width: 100vw;
    background: var(--space-cadet);
    background-image: url('img/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(69, 74, 222, 0.6) 0%, 
        rgba(69, 74, 222, 0.4) 30%, 
        rgba(69, 74, 222, 0.5) 70%,
        rgba(69, 74, 222, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
    z-index: 2;
    position: relative;
}


.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
}

.main-title {
    font-size: 9rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0;
    background: linear-gradient(45deg, var(--white), var(--fairy-tale));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-family: 'Sigmar One', cursive;
}

.sub-title {
    font-size: 6rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Edu NSW ACT Hand Cursive', cursive;
}


.cta-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--electric-purple), var(--french-mauve));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(181, 74, 237, 0.3);
    min-width: 200px;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(181, 74, 237, 0.4);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    html, body {
        overflow-y: auto;
    }
    
    .main-container {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
        padding: 2rem 0;
    }
    
    .nav-content {
        padding: 0 1.5rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .content-wrapper {
        padding: 1.5rem;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .sub-title {
        font-size: 2rem;
    }
    
    .btn-primary {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 1rem 0;
    }
    
    .nav-content {
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-links a {
        padding: 0.25rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .content-wrapper {
        padding: 1rem;
    }
    
    .main-title {
        font-size: 5rem;
    }
    
    .sub-title {
        font-size: 4rem;
    }
    
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-width: 200px;
    }
}
