@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

:root {
    /* Dorado principal */
    --primary-gradient: linear-gradient(135deg, #ffdc73 0%, #d8ab4e 40%, #b48c36 100%);
    /* Dorado más profundo */
    --secondary-gradient: linear-gradient(135deg, #c0a35a 0%, #8b5a2b 100%);
    /* Fondo dark casi negro */
    --dark-bg: #0b0b0f;
    /* Tarjetas gris carbón */
    --card-bg: #141414;
    /* Acento dorado */
    --accent: #d8ab4e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--dark-bg);
    color: #fff;
    font-family: "Exo 2", sans-serif;
}

/* Navbar */
.uk-navbar-container {
    background: rgba(5, 5, 7, 0.95) !important;
    backdrop-filter: blur(10px);
}

.uk-navbar-nav {
    font-family: "Exo 2", sans-serif;
    font-weight: 900;
}

/* Hero Banner */
.hero-banner {
    background: url("/assets/img/bg.jpg") no-repeat center;
    background-size: cover;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    mask-image: linear-gradient(
        black 60%,
        transparent
    );
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Overlay dorado en vez de morado */
    background: linear-gradient(
        135deg,
        rgba(255, 220, 115, 0.85) 0%,
        rgba(216, 171, 78, 0.9) 40%,
        rgba(180, 140, 54, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.7);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.7);
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

/* Card Styles */
.postulacion-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.card-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Status Card */
.status-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid;
}

.status-card.enviado {
    border-color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

.status-card.aceptado {
    border-color: #2ed573;
    background: rgba(46, 213, 115, 0.1);
}

.status-card.rechazado {
    border-color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
}

.status-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.status-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.status-info {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-family: "Exo 2", sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(216, 171, 78, 0.25);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

/* Button */
.btn-submit {
    width: 100%;
    padding: 18px 40px;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(216, 171, 78, 0.35);
}

/* Alert Messages */
.alert {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.alert-success {
    background: rgba(46, 213, 115, 0.2);
    border: 1px solid #2ed573;
    color: #2ed573;
}

.alert-error {
    background: rgba(255, 71, 87, 0.2);
    border: 1px solid #ff4757;
    color: #ff4757;
}

.alert i {
    font-size: 1.5rem;
}

/* Login CTA */
.login-cta {
    text-align: center;
    padding: 60px 0;
}

.login-cta-icon {
    width: 120px;
    height: 120px;
    background: var(--secondary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
}

.login-cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.login-cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

/* Botón Discord: se mantiene el color oficial */
.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 50px;
    background: #5865F2;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.4);
    color: #fff;
}