/* ==================== */
/* Hero Section */
/* ==================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.hero-content {
    max-width: 900px;
}

/* Availability Badge */
.availability-badge {
    display: inline-block;
    background: transparent;
    color: #00bfff;
    padding: 10px 25px;
    border-radius: 30px;
    border: 2px solid #00bfff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* Main Heading */
h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    white-space: nowrap;
}

.gradient-text {
    background: linear-gradient(90deg, #00bfff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.subtitle {
    font-size: 20px;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    padding: 16px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: #ffffff;
    color: #0a0f1c;
    border: 2px solid #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #00bfff;
    border: 2px solid #00bfff;
}

.btn-secondary:hover {
    background: #00bfff;
    color: #0a0f1c;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.4);
}

.arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.btn-primary:hover .arrow {
    transform: translateX(5px);
}
