/* ============================================
   BECCA-FEST 2026 - FESTIVAL PARTY WEBSITE
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Festival Color Palette */
    --primary: #4CAF50;      /* Professional Green - main brand color */
    --secondary: #FF6B6B;    /* Vibrant Coral Red - energetic complement */
    --accent: #FFD93D;       /* Bright Yellow - cheerful accent */
    --accent-green: #81C784; /* Lighter Green - softer secondary green */
    --dark: #0F1419;
    --dark-light: #1A1F2A;
    --light: #F5F5F5;
    --white: #FFFFFF;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4CAF50 0%, #FF6B6B 100%);
    --gradient-secondary: linear-gradient(135deg, #FFD93D 0%, #4CAF50 100%);
    --gradient-accent: linear-gradient(135deg, #81C784 0%, #4CAF50 100%);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 30px rgba(76, 175, 80, 0.4);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(3rem, 8vw, 7rem);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--light);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(15, 20, 25, 0.7) 0%,
        rgba(15, 20, 25, 0.85) 50%,
        rgba(15, 20, 25, 0.95) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    background: #0F1419;
}

.eq-bars {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-evenly;
    padding: 0 5%;
}

.eq-bar {
    flex: 1;
    max-width: 40px;
    min-height: 20%;
    background: linear-gradient(
        to top,
        rgba(76, 175, 80, 0.6) 0%,
        rgba(255, 217, 61, 0.5) 50%,
        rgba(255, 107, 107, 0.4) 100%
    );
    border-radius: 4px 4px 0 0;
    margin: 0 4px;
    animation: eqPulse 0.8s ease-in-out infinite alternate;
    animation-delay: var(--delay);
    transform-origin: bottom;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.2;
    }
}

@keyframes eqPulse {
    0% {
        height: calc(20% + (var(--height) * 10%));
        opacity: 0.6;
    }
    100% {
        height: calc(20% + (var(--height) * 80%));
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.wristband-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--gradient-accent);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-glow);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.festival-title {
    font-size: clamp(4rem, 12vw, 8rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 10px;
    margin-bottom: 1rem;
    text-shadow: 0 0 50px rgba(122, 155, 89, 0.5);
}

.festival-logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
    /* filter: drop-shadow(0 0 30px rgba(122, 155, 89, 0.6)); */
}

@media (max-width: 768px) {
    .festival-logo {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .festival-logo {
        max-width: 280px;
    }
}

.festival-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--light);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.festival-details {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
}

.detail-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--gradient-secondary);
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    color: var(--dark);
    box-shadow: 0 15px 50px rgba(232, 182, 76, 0.4);
}

/* ===== SECTION STYLES ===== */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header h2 {
    color: var(--white);
    margin-bottom: 0;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--dark-light);
}

.intro-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    color: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(122, 155, 89, 0.1);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--light);
    font-size: 0.95rem;
}

/* ===== LINEUP SECTION ===== */
.lineup-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.stage {
    background: var(--dark-light);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.stage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.stage-title {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.stage-description {
    margin-bottom: 2rem;
}

.stage-description p {
    color: var(--light);
    font-style: italic;
}

.lineup-times {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.time-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.time-slot .time {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
}

.time-slot .act {
    color: var(--white);
    font-weight: 500;
}

.lineup-note {
    text-align: center;
    font-style: italic;
    color: var(--accent-green);
    font-size: 1.1rem;
}

/* ===== LOCATION SECTION ===== */
.location-section {
    background: var(--dark-light);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-info h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.venue-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.venue-address {
    color: var(--light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.directions h4 {
    color: var(--accent-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.directions ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.directions li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--light);
    line-height: 1.8;
}

.directions li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.location-map {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--secondary);
    min-height: 400px;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
    text-align: center;
    padding: 2rem;
}

.map-placeholder p:first-child {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.map-placeholder p:last-child {
    color: var(--light);
    font-size: 1.1rem;
}

/* ===== RSVP SECTION ===== */
.rsvp-section {
    background: linear-gradient(135deg, rgba(122, 155, 89, 0.1) 0%, rgba(193, 119, 103, 0.1) 100%);
}

.rsvp-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--light);
}

.rsvp-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--dark-light);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    height: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(122, 155, 89, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: var(--gradient-secondary);
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(232, 182, 76, 0.4);
}

.submit-button:active {
    transform: translateY(-1px);
}

.form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(6, 255, 165, 0.2);
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
}

.form-status.error {
    display: block;
    background: rgba(122, 155, 89, 0.2);
    border: 2px solid var(--primary);
    color: var(--primary);
}

/* ===== UPDATES SECTION ===== */
.updates-section {
    background: var(--dark-light);
}

.updates-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.update-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.update-card:hover {
    transform: translateX(10px);
    background: rgba(122, 155, 89, 0.1);
}

.update-date {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.update-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.update-card p {
    color: var(--light);
    line-height: 1.8;
}

.update-placeholder {
    text-align: center;
    padding: 3rem;
    color: var(--light);
    font-style: italic;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 3rem 0 1.5rem;
    border-top: 2px solid var(--primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--light);
}

.footer-contact h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.footer-contact p {
    color: var(--light);
    margin-bottom: 0.3rem;
}

.footer-note {
    color: var(--primary) !important;
    font-size: 0.85rem;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--dark);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s ease;
        border-top: 2px solid var(--primary);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .lineup-content {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .festival-details {
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stage {
        padding: 2rem;
    }

    .rsvp-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .lineup-content {
        grid-template-columns: 1fr;
    }

    .stage {
        min-width: auto;
    }

    .festival-title {
        letter-spacing: 5px;
    }

    .hero {
        padding: 100px 20px 60px;
    }
}

/* ===== LOGIN PAGE STYLES ===== */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background: var(--dark);
    position: relative;
}

.login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: 0;
}

.login-container {
    position: relative;
    z-index: 1;
    max-width: 500px;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 3rem;
}

.login-header h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.login-subtitle {
    color: var(--light);
    font-size: 1rem;
    margin-top: 1rem;
}

.login-form {
    background: var(--dark-light);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

.login-links {
    text-align: center;
    margin-top: 2rem;
}

.login-links p {
    color: var(--light);
    margin: 0.5rem 0;
}

.login-links a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-links a:hover {
    color: var(--primary);
}

.forgot-password-link {
    font-size: 0.9rem;
}

/* ===== DASHBOARD STYLES ===== */
.dashboard-hero {
    background: var(--dark-light);
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.dashboard-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
}

.dashboard-welcome {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.dashboard-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.dashboard-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-subtitle {
    font-size: 1.1rem;
    color: var(--light);
}

.dashboard-section {
    padding: var(--section-padding);
    background: var(--dark);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.dashboard-card {
    background: var(--dark-light);
    border-radius: 20px;
    border: 2px solid var(--primary);
    padding: 2rem;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.card-header {
    margin-bottom: 2rem;
}

.card-header h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.card-header p {
    color: var(--light);
    font-size: 0.95rem;
}

.request-form .form-group {
    margin-bottom: 1.5rem;
}

.request-list {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.request-list h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.request-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.request-item:hover {
    background: rgba(122, 155, 89, 0.1);
    transform: translateX(5px);
}

.request-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.request-header strong {
    color: var(--white);
    font-size: 1.1rem;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-pending {
    background: rgba(232, 182, 76, 0.2);
    color: var(--accent);
    border: 1px solid var(--accent);
}

.status-approved {
    background: rgba(168, 191, 156, 0.2);
    color: var(--accent-green);
    border: 1px solid var(--accent-green);
}

.status-played {
    background: rgba(122, 155, 89, 0.2);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.request-artist {
    color: var(--light);
    font-style: italic;
    margin: 0.5rem 0;
}

.request-notes,
.request-message {
    color: var(--light);
    margin: 1rem 0;
    line-height: 1.6;
}

.request-date {
    color: var(--accent);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.dietary-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item strong {
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.info-item p {
    color: var(--light);
    line-height: 1.6;
    margin: 0;
}

.empty-state {
    color: var(--light);
    text-align: center;
    font-style: italic;
    padding: 2rem;
    opacity: 0.7;
}

.loading {
    color: var(--accent);
    text-align: center;
    padding: 1rem;
    font-style: italic;
}

/* Active navigation link */
.nav-links a.active {
    color: var(--primary);
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

/* ===== VOTING PAGE STYLES ===== */
.voting-hero {
    background: var(--dark-light);
    padding: 120px 20px 60px;
    text-align: center;
}

.voting-intro {
    font-size: 1.1rem;
    color: var(--light);
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

.voting-section {
    background: var(--dark);
}

.table-container {
    overflow-x: auto;
    border-radius: 20px;
    background: var(--dark-light);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

.voting-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.voting-table thead {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(255, 107, 107, 0.2));
}

.voting-table th {
    padding: 1.5rem 1rem;
    text-align: left;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary);
}

.voting-table td {
    padding: 1.5rem 1rem;
    color: var(--light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.voting-table tbody tr {
    transition: all 0.3s ease;
}

.voting-table tbody tr:hover {
    background: rgba(76, 175, 80, 0.05);
}

.voting-table tbody tr:last-child td {
    border-bottom: none;
}

.vote-button {
    display: inline-block;
    padding: 10px 24px;
    background: var(--gradient-secondary);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.vote-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 217, 61, 0.4);
    color: var(--dark);
}

.voting-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 217, 61, 0.1);
    border-left: 4px solid var(--accent);
    border-radius: 10px;
}

.voting-note p {
    color: var(--light);
    margin: 0;
    line-height: 1.6;
}

.voting-note strong {
    color: var(--accent);
}

/* Mobile responsive table */
@media (max-width: 768px) {
    .voting-table {
        min-width: 100%;
    }

    .voting-table thead {
        display: none;
    }

    .voting-table tbody tr {
        display: block;
        margin-bottom: 2rem;
        border: 2px solid var(--primary);
        border-radius: 15px;
        overflow: hidden;
    }

    .voting-table td {
        display: block;
        text-align: right;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        padding-left: 50%;
    }

    .voting-table td:last-child {
        border-bottom: none;
        text-align: center;
        padding-left: 1rem;
    }

    .voting-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        font-weight: 700;
        color: var(--accent);
        text-transform: uppercase;
        font-size: 0.85rem;
    }

    .voting-table td:last-child::before {
        display: none;
    }
}

/* ===== RESPONSIVE DASHBOARD ===== */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-hero {
        padding: 100px 20px 40px;
    }

    .dashboard-card {
        padding: 1.5rem;
    }

    .login-form {
        padding: 2rem;
    }

    .request-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .dashboard-card {
        padding: 1.25rem;
    }

    .card-header h2 {
        font-size: 1.5rem;
    }

    .request-item {
        padding: 1rem;
    }

    .login-form {
        padding: 1.5rem;
    }
}
