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

html {
    background-color: #F58820;
}

h1, h2, h3, h4, h5, h6, p, a {
    letter-spacing: 2px;
    text-transform: uppercase;
}

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    background-image: url('./media/bg-image.png');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.1);
    background-blend-mode: darken;
}

.container {
    position: relative;
    min-height: 100vh;
    width: 100%;
}

.logo {
    width: 150px;
    height: auto;
    margin: 20px auto;
}


/* Main content */
.content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    min-height: 100vh;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease-out;
}

.subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    animation: fadeInDown 1s ease-out 0.3s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.welcome-text {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 15px;
    background-color: #f58720e9;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    animation: fadeIn 1s ease-out 0.6s both;
    letter-spacing: 1px !important;
}

.welcome-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
}

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

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

/* Navigation buttons */
.button-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-button {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 30px;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: .9rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.button-icon {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.nav-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.nav-button:hover::before {
    left: 100%;
}

.nav-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.nav-button:hover .button-icon {
    transform: scale(1.2);
}

.button-1 {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
}

.button-2 {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
}

.button-3 {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: #fff;
}

.button-4 {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: #fff;
}

/* Responsive design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
}