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

html, body {
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    overflow-x: hidden;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
}

.hero-text {
    margin-bottom: 60px;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    color: white;
    text-shadow: 0 4px 20px rgba(255, 107, 107, 0.5);
    margin-bottom: 15px;
    letter-spacing: 4px;
    animation: titleGlow 2s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 4px 20px rgba(255, 107, 107, 0.5);
    }
    50% {
        text-shadow: 0 8px 40px rgba(255, 107, 107, 0.8), 0 0 60px rgba(78, 205, 196, 0.3);
    }
}

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

.button-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Primary Button - Join Us */
.btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    border: 2px solid rgba(255, 107, 107, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff8a8a 0%, #ff6b6b 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.8), 0 0 30px rgba(255, 107, 107, 0.4);
    border-color: rgba(255, 107, 107, 1);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
}

/* Secondary Button - Our Team */
.btn-secondary {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
    border: 2px solid rgba(78, 205, 196, 0.5);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6ee7de 0%, #4ecdc4 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(78, 205, 196, 0.8), 0 0 30px rgba(78, 205, 196, 0.4);
    border-color: rgba(78, 205, 196, 1);
}

.btn-secondary:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-text {
    display: inline-block;
}

.btn-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 20px;
}

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

/* Ripple effect on click */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.btn:active::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        gap: 25px;
    }

    .btn {
        padding: 14px 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 30px;
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .button-container {
        gap: 20px;
    }
}
