/**
 * Hero Quick Access Section Styles
 * Small, well-styled title with quick access navigation
 */

/* ===== HERO QUICK ACCESS BASE STYLES ===== */
.hero-quick-access {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 255, 0.98) 50%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 35px 0 30px;
    margin-top: -50px;
    z-index: 10;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-quick-access::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, #f7931e, transparent);
    opacity: 0.6;
}

/* Quick Access Content */
.quick-access-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== QUICK ACCESS TITLE ===== */
.quick-access-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.text-gradient {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===== QUICK ACCESS BUTTONS ===== */
.quick-access-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-width: 140px;
    justify-content: center;
}

.quick-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.4s ease;
    z-index: 1;
}

.quick-btn:hover::before {
    left: 0;
}

.quick-btn span,
.quick-btn i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.quick-btn i {
    font-size: 14px;
}

/* Primary Button */
.quick-btn.primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.quick-btn.primary::before {
    background: linear-gradient(135deg, #f7931e, #ff4500);
}

.quick-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Secondary Button */
.quick-btn.secondary {
    background: transparent;
    color: #ff6b35;
    border-color: #ff6b35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.15);
}

.quick-btn.secondary::before {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.quick-btn.secondary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

/* Tertiary Button */
.quick-btn.tertiary {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.quick-btn.tertiary::before {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.quick-btn.tertiary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.25);
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-quick-access {
        padding: 25px 0 20px;
        margin-top: -40px;
        border-radius: 18px 18px 0 0;
    }
    
    .quick-access-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .quick-access-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .quick-btn {
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.85rem;
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .hero-quick-access {
        padding: 20px 0 18px;
        margin-top: -35px;
        border-radius: 15px 15px 0 0;
    }
    
    .quick-access-content {
        padding: 0 15px;
    }
    
    .quick-access-title {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    
    .quick-access-buttons {
        gap: 10px;
    }
    
    .quick-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .quick-btn i {
        font-size: 12px;
    }
}

/* ===== FOCUS STATES FOR ACCESSIBILITY ===== */
.quick-access-btn:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .hero-quick-access {
        background: white !important;
        box-shadow: none !important;
        padding: 20px 0 !important;
    }
    
    .quick-access-btn {
        background: #f5f5f5 !important;
        color: #333 !important;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}
