/* Login Page Styles - CLEANED VERSION */

/* =================================
   IMPORTS & VARIABLES
   ================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* =================================
   BASE LAYOUT
   ================================= */
html, body {
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    font-family: 'Inter', 'Segoe UI', 'SF Pro Display', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

.full-background {
    background: url('../images/Football_NLA.jpeg') center/cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 40px;
}

.full-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* =================================
   FORM STYLING
   ================================= */
form {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    max-width: 280px;
    width: 90%;
    backdrop-filter: blur(3px) saturate(120%);
}

form:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 6px 20px rgba(0, 0, 0, 0.1);
}

.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 20px;
}

/* =================================
   TYPOGRAPHY
   ================================= */
h2 {
    color: #111;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 800;
    text-shadow: 0 3px 8px rgba(255, 255, 255, 1), 0 2px 4px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(0, 0, 0, 0.2);
}

h3 {
    color: #333;
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
}

/* =================================
   FORM INPUTS
   ================================= */
.large-text-field {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: #222;
    transition: all 0.3s ease;
    box-sizing: border-box;
    backdrop-filter: blur(15px);
    font-weight: 600;
}

.large-text-field:focus {
    outline: none;
    border-color: #0052a3;
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 0 0.2rem rgba(0, 82, 163, 0.25);
}

.large-text-field::placeholder {
    color: rgba(0, 0, 0, 0.7);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* =================================
   SUBMIT BUTTON
   ================================= */
input[type="submit"] {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #0052a3 0%, #0099cc 100%);
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

input[type="submit"]:hover::before {
    width: 300px;
    height: 300px;
}

input[type="submit"]:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 82, 163, 0.4);
}

/* =================================
   LINKS & NAVIGATION
   ================================= */
.bottom-link {
    color: #0052a3;
    font-size: 30px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.bottom-link:hover {
    color: #4da6ff;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(0, 82, 163, 0.5);
}

.contact_us, .about_us {
    color: #555;
    text-decoration: none;
    font-size: 16px;
    margin: 10px 20px;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 82, 163, 0.2);
}

.contact_us:hover, .about_us:hover {
    color: #0052a3;
    background: rgba(255, 255, 255, 0.95);
}

/* =================================
   SOCIAL MEDIA & MUSIC BUTTON
   ================================= */
.social-media-links {
    position: relative;
    z-index: 3;
}

.social-media-links a {
    position: relative;
    z-index: 3;
}

.music-button {
    position: relative;
    z-index: 3;
}

/* =================================
   ERROR MESSAGES
   ================================= */
p[style*="color:red"] {
    color: #dc3545 !important;
    background: rgba(220, 53, 69, 0.1);
    padding: 10px;
    border-radius: 6px;
    border-left: 4px solid #dc3545;
    margin-bottom: 20px;
}

/* =================================
   DROPDOWN NAVIGATION
   ================================= */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background-color: #0052a3;
    color: white;
    padding: 12px 16px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.dropdown-btn:hover {
    background-color: #0052a3;
    transform: translateY(-1px);
}

.hamburger-icon {
    font-size: 18px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: linear-gradient(145deg, var(--bg-dark), var(--bg-darker));
    min-width: 280px;
    box-shadow: 0 12px 35px rgba(0, 82, 163, 0.2), 0 6px 16px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    z-index: 1000;
    top: 100%;
    left: 0;
    margin-top: 5px;
    border: 1px solid rgba(0, 82, 163, 0.3);
    max-height: 70vh;
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.dropdown.active .dropdown-content {
    display: block;
    animation: dropdownSlide 0.3s ease-out;
}

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

.dropdown-section {
    border-bottom: 1px solid rgba(0, 82, 163, 0.2);
    padding: 15px;
    background: rgba(35, 35, 35, 0.1);
    transition: background 0.3s ease;
}

.dropdown-section:hover {
    background: rgba(35, 35, 35, 0.2);
}

.dropdown-section:last-child {
    border-bottom: none;
}

.dropdown-section h4 {
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 5px;
    margin-bottom: 10px;
    margin-top: 0;
}

.dropdown-section a {
    color: var(--text-secondary);
    padding: 8px 0;
    text-decoration: none;
    display: block;
    border-radius: 6px;
    padding-left: 10px;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.dropdown-section a:hover {
    background: linear-gradient(135deg, rgba(0, 82, 163, 0.1), rgba(0, 82, 163, 0.05));
    color: var(--primary-blue);
    padding-left: 15px;
    transform: translateX(5px);
}

.dropdown-section a.logout-link {
    color: var(--secondary-orange);
    font-weight: bold;
}

.dropdown-section a.logout-link:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    color: #ff8f65;
}

/* =================================
   CONTENT LAYOUT
   ================================= */
.content {
    padding: 40px 25px 25px 25px;
    margin-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.content h2 {
    font-size: 1.3em;
    margin-bottom: 15px;
    line-height: 1.5;
    color: #333;
}
